/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 | 23 int writing = toys.optc == 3, page_size = getpagesize(), bytes = 4, fd; in devmem_main() local 37 if (writing) data = atolx_range(toys.optargs[2], 0, (1ULL<<(8*bytes))-1); in devmem_main() 40 fd = xopen("/dev/mem", (writing ? O_RDWR : O_RDONLY) | O_SYNC); in devmem_main() 43 map = xmmap(NULL, map_len, writing ? PROT_WRITE : PROT_READ, MAP_SHARED, fd, in devmem_main() 49 if (writing) { in devmem_main()
|
/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/gstreamer/gstplugins_bad/po/ |
D | en_GB.po | 131 #~ msgid "No file name specified for writing." 134 #~ msgid "Could not open file \"%s\" for writing." 135 #~ msgstr "Could not open file \"%s\" for writing." 140 #~ msgid "Could not open device \"%s\" for reading and writing." 141 #~ msgstr "Could not open device \"%s\" for reading and writing." 152 #~ msgid "Could not open control device \"%s\" for writing." 153 #~ msgstr "Could not open control device \"%s\" for writing." 161 #~ msgid "Could not open video device \"%s\" for writing." 162 #~ msgstr "Could not open video device \"%s\" for writing." 179 #~ msgid "Could not open device \"%s\" for writing." [all …]
|
/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/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/JSONStream/test/ |
D | gen.js | 72 var writing = false 78 if(writing) return 79 writing = true 84 writing = false
|
/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/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/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/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/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/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/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/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/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()
|
/third_party/uboot/u-boot-2020.01/doc/board/intel/ |
D | bayleybay.rst | 9 the time of writing). Put it in the corresponding board directory and rename 12 Obtain the VGA RAM (Vga.dat at the time of writing) and put it into the same 16 from the sample SPI image provided in the FSP (SPI.bin at the time of writing)::
|
/third_party/node/lib/internal/streams/ |
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));
|
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);
|