/third_party/openssl/test/recipes/ |
D | 40-test_rehash.t | 68 my $writing = 0; 73 die "New start in a PEM blob?\n" if $writing; 81 $writing = 1; 83 print OUT $line if $writing; 85 close OUT if $writing; 86 $writing = 0; 89 die "No end marker in $basename\n" if $writing;
|
/third_party/boost/libs/thread/example/ |
D | shared_mutex.cpp | 21 enum {reading, writing}; enumerator 99 state = writing; in writer() 100 assert(state == writing); in writer() 134 state = writing; in try_writer() 135 assert(state == writing); in try_writer() 170 state = writing; in try_for_writer() 171 assert(state == writing); in try_for_writer() 243 state = writing; in writer() 244 assert(state == writing); in writer() 278 state = writing; in try_writer() [all …]
|
/third_party/toybox/toys/other/ |
D | devmem.c | 22 int writing = toys.optc == 3, page_size = getpagesize(), bytes = 4, fd; in devmem_main() local 36 if (writing) data = atolx_range(toys.optargs[2], 0, (1ULL<<(8*bytes))-1); in devmem_main() 39 fd = xopen("/dev/mem", (writing ? O_RDWR : O_RDONLY) | O_SYNC); in devmem_main() 42 map = xmmap(NULL, map_len, writing ? PROT_WRITE : PROT_READ, MAP_SHARED, fd, in devmem_main() 48 if (writing) { in devmem_main()
|
/third_party/gstreamer/gstplugins_bad/po/ |
D | en_GB.po | 127 #~ msgid "No file name specified for writing." 131 #~ msgid "Could not open file \"%s\" for writing." 132 #~ msgstr "Could not open file \"%s\" for writing." 134 #~ msgid "Could not open device \"%s\" for reading and writing." 135 #~ msgstr "Could not open device \"%s\" for reading and writing." 143 #~ msgid "Could not open audio device \"%s\" for writing." 144 #~ msgstr "Could not open audio device \"%s\" for writing." 146 #~ msgid "Could not open control device \"%s\" for writing." 147 #~ msgstr "Could not open control device \"%s\" for writing." 158 #~ msgid "Could not open video device \"%s\" for writing." [all …]
|
/third_party/node/benchmark/ |
D | README.md | 5 writing JavaScript run by the built-in JavaScript engine. 8 directory, see [the guide on benchmarks](../doc/guides/writing-and-running-benchmarks.md). 76 writing benchmarks. 80 See [the guide on writing benchmarks](../doc/guides/writing-and-running-benchmarks.md#basics-of-a-b… 85 See [the guide on writing HTTP benchmarks](../doc/guides/writing-and-running-benchmarks.md#creating… 90 See [the guide on writing HTTP benchmarks](../doc/guides/writing-and-running-benchmarks.md#creating…
|
/third_party/node/deps/npm/node_modules/pumpify/node_modules/pump/ |
D | index.js | 22 var destroyer = function (stream, reading, writing, callback) { argument 30 eos(stream, {readable: reading, writable: writing}, function (err) { 69 var writing = i > 0 70 return destroyer(stream, reading, writing, function (err) {
|
/third_party/node/deps/npm/node_modules/pump/ |
D | index.js | 22 var destroyer = function (stream, reading, writing, callback) { argument 30 eos(stream, {readable: reading, writable: writing}, function (err) { 69 var writing = i > 0 70 return destroyer(stream, reading, writing, function (err) {
|
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/ |
D | pipeline.js | 29 function destroyer(stream, reading, writing, callback) { argument 38 writable: writing 85 var writing = i > 0; 86 return destroyer(stream, reading, writing, function (err) {
|
/third_party/node/deps/npm/node_modules/JSONStream/test/ |
D | gen.js | 72 var writing = false 78 if(writing) return 79 writing = true 84 writing = false
|
/third_party/ltp/testcases/kernel/device-drivers/tbio/tbio_kernel/ |
D | ltp_tbio.c | 79 int writing) in send_request() argument 123 int reading = 0, writing = 0; in tbio_io() local 143 writing = 1; in tbio_io() 170 send_request(q, bio, bdev, &inter, writing); in tbio_io() 290 int reading = 0, writing = 0; in test_bio_split() local 317 writing = 1; in test_bio_split() 351 send_request(q, &(bio_pairp->bio1), bdev, &inter, writing); in test_bio_split() 353 send_request(q, &(bio_pairp->bio2), bdev, &inter, writing); in test_bio_split()
|
/third_party/boost/doc/html/boost_asio/example/cpp11/nonblocking/ |
D | third_party_lib.cpp | 45 state_ = writing; in do_read() 53 return state_ == writing; in want_write() 63 state_ = boost::asio::buffer_size(write_buffer_) > 0 ? writing : reading; in do_write() 69 enum { reading, writing } state_ = reading; enumerator
|
/third_party/node/lib/internal/repl/ |
D | history.js | 57 let writing = false; 132 if (writing) { 136 writing = true; 142 writing = false;
|
/third_party/boost/libs/asio/example/cpp11/nonblocking/ |
D | third_party_lib.cpp | 45 state_ = writing; in do_read() 53 return state_ == writing; in want_write() 63 state_ = boost::asio::buffer_size(write_buffer_) > 0 ? writing : reading; in do_write() 69 enum { reading, writing } state_ = reading; enumerator
|
/third_party/node/test/fixtures/wpt/resources/ |
D | readme.md | 5 `testharness.js` is a framework for writing low-level tests of 21 … visit [https://web-platform-tests.org/writing-tests/testharness-api.html](https://web-platform-te…
|
/third_party/node/deps/npm/node_modules/sorted-union-stream/node_modules/readable-stream/lib/ |
D | _stream_writable.js | 97 this.writing = false; 229 if (!state.writing && 263 if (state.writing || state.corked) 274 state.writing = true; 299 state.writing = false; 391 if (state.writing) { 444 !state.writing);
|
/third_party/grpc/test/core/util/ |
D | trickle_endpoint.cc | 45 bool writing; member 140 te->writing = false; in te_finish_write() 169 te->writing = false; in grpc_trickle_endpoint_create() 180 if (!te->writing && te->write_buffer.length > 0) { in grpc_trickle_endpoint_trickle() 189 te->writing = true; in grpc_trickle_endpoint_trickle()
|
/third_party/boost/libs/asio/example/cpp03/nonblocking/ |
D | third_party_lib.cpp | 48 state_ = writing; in do_read() 56 return state_ == writing; in want_write() 66 state_ = boost::asio::buffer_size(write_buffer_) > 0 ? writing : reading; in do_write() 72 enum { reading, writing } state_; enumerator
|
/third_party/boost/doc/html/boost_asio/example/cpp03/nonblocking/ |
D | third_party_lib.cpp | 48 state_ = writing; in do_read() 56 return state_ == writing; in want_write() 66 state_ = boost::asio::buffer_size(write_buffer_) > 0 ? writing : reading; in do_write() 72 enum { reading, writing } state_; enumerator
|
/third_party/typescript/tests/baselines/reference/ |
D | indexerConstraints2.errors.txt | 4 …1336: An index signature parameter type cannot be a type alias. Consider writing '[n: number]: A' … 5 …1336: An index signature parameter type cannot be a type alias. Consider writing '[s: string]: A' … 12 …1336: An index signature parameter type cannot be a type alias. Consider writing '[key: string]: a… 57 !!! error TS1336: An index signature parameter type cannot be a type alias. Consider writing '[n: n… 65 !!! error TS1336: An index signature parameter type cannot be a type alias. Consider writing '[s: s… 118 !!! error TS1336: An index signature parameter type cannot be a type alias. Consider writing '[key:…
|
/third_party/node/deps/npm/node_modules/flush-write-stream/ |
D | README.md | 28 console.log('writing', data.toString()) 41 writing hello 42 writing world
|
/third_party/boost/libs/test/test/ |
D | Jamfile.v2 | 162 test-suite "writing-test-ts" 164 …[ boost.test-self-test run : writing-test-ts : assertion-construction-test : : : : : : $(requireme… 165 [ boost.test-self-test run : writing-test-ts : boost_check_equal-str-test ] 166 …[ boost.test-self-test run : writing-test-ts : collection-comparison-test : : : : : : $(requiremen… 167 …[ boost.test-self-test run : writing-test-ts : dont_print_log_value-test : : : : : : $(requirement… 168 …[ boost.test-self-test run : writing-test-ts : fp-comparisons-test : : : : : : $(requirements_boos… 169 …[ boost.test-self-test run : writing-test-ts : fp-multiprecision-comparison-test : : : : : : $(req… 170 [ boost.test-self-test run : writing-test-ts : fp-no-comparison-for-incomplete-types-test ] 171 [ boost.test-self-test run : writing-test-ts : fp-relational-operator ] 172 [ boost.test-self-test run : writing-test-ts : output_test_stream-test ] [all …]
|
/third_party/node/lib/internal/streams/ |
D | writable.js | 123 this.writing = false; 316 if (!state.writing) 345 if (state.writing || state.corked || state.errored) { 356 state.writing = true; 370 state.writing = true; 404 state.writing = false; 478 if (state.writing) { 530 } while (i < buffered.length && !state.writing); 606 !state.writing);
|
D | pipeline.js | 34 function destroyer(stream, reading, writing, callback) { argument 43 eos(stream, { readable: reading, writable: writing }, (err) => { 170 const writing = i > 0; 174 destroys.push(destroyer(stream, reading, writing, finish));
|
/third_party/boost/libs/asio/example/cpp14/operations/ |
D | composed_7.cpp | 67 enum { starting, waiting, writing }; in async_write_messages() enumerator 126 case writing: in async_write_messages() 137 state = writing; in async_write_messages()
|
/third_party/boost/doc/html/boost_asio/example/cpp14/operations/ |
D | composed_7.cpp | 67 enum { starting, waiting, writing }; in async_write_messages() enumerator 126 case writing: in async_write_messages() 137 state = writing; in async_write_messages()
|