Home
last modified time | relevance | path

Searched refs:autoCommit (Results 1 – 5 of 5) sorted by relevance

/third_party/node/lib/internal/readline/
Dpromises.js22 #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/
Dtest-readline-promises-csi.mjs168 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/
Dreadline.md628 * `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/
Dsqlite3.c17029 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/
DCHANGELOG_V17.md1520 …odejs/node/commit/341312d78a)] - **(SEMVER-MINOR)** **readline**: add `autoCommit` option (Antoine…