Examples of sendLine()


Examples of org.hsqldb.lib.SimpleLog.sendLine()

      localSimpleLog.sendLine(SimpleLog.LOG_NORMAL, "DataFileCache.close(" + paramBoolean + ") : start");
      if (paramBoolean)
      {
        this.cache.saveAll();
        Trace.printSystemOut("saveAll: " + localStopWatch.elapsedTime());
        localSimpleLog.sendLine(SimpleLog.LOG_NORMAL, "DataFileCache.close() : save data");
        if ((this.fileModified) || (this.freeBlocks.isModified()))
        {
          this.dataFile.seek(4L);
          this.dataFile.writeLong(this.freeBlocks.getLostBlocksSize());
          this.dataFile.seek(12L);
View Full Code Here

Examples of org.hsqldb.lib.SimpleLog.sendLine()

          this.dataFile.seek(28L);
          i = BitMap.set(0, 2);
          if (this.hasRowInfo)
            i = BitMap.set(i, 3);
          this.dataFile.writeInt(i);
          localSimpleLog.sendLine(SimpleLog.LOG_NORMAL, "DataFileCache.close() : flags");
          if (this.dataFile.length() != this.fileFreePosition)
            this.dataFile.seek(this.fileFreePosition);
          localSimpleLog.sendLine(SimpleLog.LOG_NORMAL, "DataFileCache.close() : seek end");
          Trace.printSystemOut("pos and flags: " + localStopWatch.elapsedTime());
        }
View Full Code Here

Examples of org.hsqldb.lib.SimpleLog.sendLine()

            i = BitMap.set(i, 3);
          this.dataFile.writeInt(i);
          localSimpleLog.sendLine(SimpleLog.LOG_NORMAL, "DataFileCache.close() : flags");
          if (this.dataFile.length() != this.fileFreePosition)
            this.dataFile.seek(this.fileFreePosition);
          localSimpleLog.sendLine(SimpleLog.LOG_NORMAL, "DataFileCache.close() : seek end");
          Trace.printSystemOut("pos and flags: " + localStopWatch.elapsedTime());
        }
      }
      if (this.dataFile != null)
      {
View Full Code Here

Examples of org.hsqldb.lib.SimpleLog.sendLine()

        }
      }
      if (this.dataFile != null)
      {
        this.dataFile.close();
        localSimpleLog.sendLine(SimpleLog.LOG_NORMAL, "DataFileCache.close() : close");
        this.dataFile = null;
        Trace.printSystemOut("close: " + localStopWatch.elapsedTime());
      }
      int i = this.fileFreePosition == 32L ? 1 : 0;
      if (i != 0)
View Full Code Here

Examples of org.hsqldb_voltpatches.lib.SimpleLog.sendLine()

                return;
            }

            StopWatch sw = new StopWatch();

            appLog.sendLine(SimpleLog.LOG_NORMAL,
                            "DataFileCache.close(" + write + ") : start");

            if (write) {
                cache.saveAll();
                Error.printSystemOut("saveAll: " + sw.elapsedTime());
View Full Code Here

Examples of org.hsqldb_voltpatches.lib.SimpleLog.sendLine()

                            "DataFileCache.close(" + write + ") : start");

            if (write) {
                cache.saveAll();
                Error.printSystemOut("saveAll: " + sw.elapsedTime());
                appLog.sendLine(SimpleLog.LOG_NORMAL,
                                "DataFileCache.close() : save data");

                if (fileModified || freeBlocks.isModified()) {

                    // set empty
View Full Code Here

Examples of org.hsqldb_voltpatches.lib.SimpleLog.sendLine()

                    if (hasRowInfo) {
                        flag = BitMap.set(flag, FLAG_ROWINFO);
                    }

                    dataFile.writeInt(flag);
                    appLog.sendLine(SimpleLog.LOG_NORMAL,
                                    "DataFileCache.close() : flags");

                    //
                    if (dataFile.length() != fileFreePosition) {
                        dataFile.seek(fileFreePosition);
View Full Code Here

Examples of org.hsqldb_voltpatches.lib.SimpleLog.sendLine()

                    //
                    if (dataFile.length() != fileFreePosition) {
                        dataFile.seek(fileFreePosition);
                    }

                    appLog.sendLine(SimpleLog.LOG_NORMAL,
                                    "DataFileCache.close() : seek end");
                    Error.printSystemOut("pos and flags: " + sw.elapsedTime());
                }
            }
View Full Code Here

Examples of org.hsqldb_voltpatches.lib.SimpleLog.sendLine()

                }
            }

            if (dataFile != null) {
                dataFile.close();
                appLog.sendLine(SimpleLog.LOG_NORMAL,
                                "DataFileCache.close() : close");

                dataFile = null;

                Error.printSystemOut("close: " + sw.elapsedTime());
View Full Code Here

Examples of org.jboss.as.test.integration.management.util.CLIWrapper.sendLine()

        cli.sendConnect(DomainTestSupport.masterAddress);
        line = cli.readLine(WAIT_TIMEOUT);

        assertTrue("Check we are disconnected:" + line, line.indexOf("disconnected") >= 0);
        cli.sendLine("version", false);
        line = cli.readLine(WAIT_TIMEOUT);
        assertTrue("Connect failed:" + line, line.indexOf("[domain@") >= 0);
        cli.quit();

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.