Searched refs:autoCommit (Results 1 – 5 of 5) sorted by relevance
/third_party/node/lib/internal/readline/ |
D | promises.js | 22 #autoCommit = false; field in Readline 30 if (options?.autoCommit != null) { 31 validateBoolean(options.autoCommit, 'options.autoCommit'); 32 this.#autoCommit = options.autoCommit; 47 if (this.#autoCommit) process.nextTick(() => this.#stream.write(data)); 77 if (this.#autoCommit) process.nextTick(() => this.#stream.write(data)); 98 if (this.#autoCommit) process.nextTick(() => this.#stream.write(data)); 108 if (this.#autoCommit) {
|
/third_party/node/test/parallel/ |
D | test-readline-promises-csi.mjs | 168 const readline = new Readline(writable, { autoCommit: true }); property 177 const readline = new Readline(writable, { autoCommit: true }); property 193 const readline = new Readline(writable, { autoCommit: true }); property 215 const readline = new Readline(writable, { autoCommit: true }); property
|
/third_party/node/doc/api/ |
D | readline.md | 628 * `autoCommit` {boolean} If `true`, no need to call `rl.commit()`. 645 Call `rl.commit()` to see the effect of this method, unless `autoCommit: true` 659 Call `rl.commit()` to see the effect of this method, unless `autoCommit: true` 685 Call `rl.commit()` to see the effect of this method, unless `autoCommit: true` 701 Call `rl.commit()` to see the effect of this method, unless `autoCommit: true`
|
/third_party/sqlite/src/ |
D | sqlite3.c | 17029 u8 autoCommit; /* The auto-commit flag. */ member 85540 db->autoCommit = 1; 85558 && db->autoCommit 85605 db->autoCommit = 1; 85626 db->autoCommit = 1; 85664 if( db->autoCommit ){ 85668 assert( db->nVdbeActive>0 || db->autoCommit==0 || db->nStatement==0 ); 88326 assert( db->nVdbeWrite>0 || db->autoCommit==0 88402 if( rc==SQLITE_DONE && db->autoCommit ){ 93783 assert( db->pSavepoint==0 || db->autoCommit==0 ); [all …]
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V17.md | 1520 …odejs/node/commit/341312d78a)] - **(SEMVER-MINOR)** **readline**: add `autoCommit` option (Antoine…
|