/third_party/pulseaudio/src/tests/ |
H A D | json-test.c | 16 You should have received a copy of the GNU Lesser General Public License 64 char *received; in START_TEST() local 76 received = pa_json_encoder_to_string_free(encoder); in START_TEST() 77 o = pa_json_parse(received); in START_TEST() 78 pa_xfree(received); in START_TEST() 128 char *received; in START_TEST() local 140 received = pa_json_encoder_to_string_free(encoder); in START_TEST() 141 o = pa_json_parse(received); in START_TEST() 142 pa_xfree(received); in START_TEST() 197 char *received; in START_TEST() local 244 char *received; START_TEST() local 289 char *received; START_TEST() local 433 char *received; START_TEST() local 504 char *received; START_TEST() local 591 char *received; START_TEST() local 682 char *received; START_TEST() local 729 char *received; START_TEST() local [all...] |
/third_party/node/test/parallel/ |
H A D | test-tls-onread-static-buffer.js | 24 let received = 0; 34 received += nread; 39 assert.strictEqual(received, smallMessage.length); 49 let received = 0; 59 received += nread; 67 assert.strictEqual(received, smallMessage.length); 77 let received = 0; 93 received += nread; 98 assert.strictEqual(received, smallMessage.length); 109 let received [all...] |
H A D | test-cluster-dgram-1.js | 73 // it has received the expected number of packets. After that it disconnects. 80 let received = 0; 83 received = msg.received; 88 assert.strictEqual(received, PACKETS_PER_WORKER); 95 let received = 0; 101 received++; 104 if (received === PACKETS_PER_WORKER) { 105 process.send({ received });
|
H A D | test-cluster-dgram-bind-fd.js | 64 // it has received the expected number of packets. After that it disconnects. 71 let received = 0; 78 received = msg.received; 83 assert.strictEqual(received, PACKETS_PER_WORKER); 90 let received = 0; 98 received++; 101 if (received === PACKETS_PER_WORKER) { 102 process.send({ received });
|
H A D | test-tls-pause.js | 27 // This test ensures that the data received over tls-server after pause 41 let received = 0; 79 received += data.length; 80 console.error('received', received); 82 if (received >= sent) { 83 console.error(`received: ${received}`); 91 assert.strictEqual(sent, received);
|
H A D | test-worker-message-port.js | 14 port2.on('message', common.mustCall((received) => { 15 assert.deepStrictEqual(received, input); 22 port2.addEventListener('foo', common.mustCall((received) => { 23 assert.strictEqual(received.type, 'foo'); 24 assert.strictEqual(received.detail, 'bar'); 26 port2.on('foo', common.mustCall((received) => { 27 assert.strictEqual(received, 'bar'); 56 port2.on('message', common.mustCall((received) => { 57 assert.deepStrictEqual(received, input); 77 port2.on('message', common.mustCall((received) [all...] |
H A D | test-https-drain.js | 38 let received = 0; 78 received += data.length; 79 if (received >= sent) { 80 console.error(`received: ${received}`); 91 assert.strictEqual(sent, received);
|
H A D | test-dgram-send-callback-recursive.js | 8 let received = 0; 33 received++; 34 if (received === limit) { 40 assert.strictEqual(received, limit);
|
H A D | test-net-server-max-connections-close-makes-more-available.js | 17 const received = []; 37 console.error(`connection ${index} received response`); 62 console.error(`received message: ${data}`); 63 received.push(String(data)); 84 assert.deepStrictEqual(received, ['0', '2']);
|
H A D | test-stream2-basic.js | 71 this.received = []; 76 this.received.push(c.toString()); 83 this.emit('end', this.received); 142 w.on('end', common.mustCall(function(received) { 143 assert.deepStrictEqual(received, expect); 214 w[0].on('end', common.mustCall(function(received) { 215 assert.deepStrictEqual(received, expect); 217 w[1].on('end', common.mustCall(function(received) { 218 assert.deepStrictEqual(received, expect);
|
H A D | test-net-connect-options-allowhalfopen.js | 46 console.log(`Server received FIN sent by client ${this.clientId}`); 51 FIN ${serverReceivedFIN} received by server, 52 FIN ${clientReceivedFIN} received by client 72 console.log(`client ${index} received FIN`); 92 FIN ${serverReceivedFIN} received by server 93 FIN ${clientReceivedFIN} received by client
|
H A D | test-stream-readable-async-iterators.js | 216 let received = 0; 228 received++; 232 assert.strictEqual(readed, received); 270 let received = 0; 276 received++; 283 assert.strictEqual(received, 1); 319 let received = 0; 325 received++; 332 assert.strictEqual(received, 1); 341 let received [all...] |
H A D | test-http-client-readable.js | 58 let received = ''; 64 received += chunk; 68 assert.strictEqual(received, 'hello world');
|
H A D | test-tls-delayed-attach.js | 28 // is created after the original socket has received some data. 39 let received = ''; 54 received += chunk; 71 assert.strictEqual(received, sent);
|
H A D | test-child-process-stdio-big-write-end.js | 78 let received = 0; 80 received += c.length; 84 console.log(received);
|
H A D | test-cluster-dgram-2.js | 41 let received = 0; 55 // received. 57 received++; 59 if (received === PACKETS_PER_WORKER * NUM_WORKERS) { 84 // There is no guarantee that a sent dgram packet will be received so keep
|
/third_party/node/test/fixtures/wpt/FileAPI/blob/ |
H A D | Blob-constructor.any.js | 143 var received = []; 146 received.push("Symbol.iterator"); 150 received.push("length getter"); 153 received.push("length valueOf"); 159 received.push("0 getter"); 162 received.push("0 toString"); 168 received.push("1 getter"); 172 received.push("2 getter"); 179 assert_array_equals(received, [
|
/third_party/ltp/testcases/kernel/containers/pidns/ |
H A D | pidns30.c | 27 static volatile int received; variable 39 received = 1; in child_signal_handler() 74 if (received) in child_func() 75 tst_res(TPASS, "Signal notification has been received"); in child_func() 77 tst_res(TFAIL, "Signal notification has not been received"); in child_func() 97 received = 0; in run()
|
H A D | pidns31.c | 26 static volatile int received; variable 40 received++; in signal_handler() 80 received = 0; in run() 106 TST_EXP_EQ_LI(received, 1); in run()
|
/third_party/node/benchmark/tls/ |
H A D | throughput-s2c.js | 14 let received = 0; 70 received += nread; 96 received += chunk.length; 101 const mbits = (received * 8) / (1024 * 1024);
|
/third_party/node/test/fixtures/wpt/dom/events/resources/ |
H A D | prefixed-animation-event-tests.js | 91 'prefixed listener and handler received event'); 108 'prefixed listener or handler received event'); 128 assert_false(receivedEvent, 'prefixed listener or handler received event'); 142 assert_true(receivedEvent, `received ${prefixedHandler} event`); 159 assert_true(receivedUnprefixedEvent, `received ${unprefixedHandler} event`); 160 assert_false(receivedPrefixedEvent, `received ${prefixedHandler} event`); 178 assert_true(receivedUnprefixedEvent, `received ${unprefixedHandler} event`); 179 assert_false(receivedPrefixedEvent, `received ${prefixedHandler} event`); 220 assert_true(receivedEvent, `received ${prefixedType} event`); 237 assert_true(receivedUnprefixedEvent, `received [all...] |
/third_party/node/benchmark/dgram/ |
H A D | multi-buffer.js | 25 let received = 0; 45 const bytes = (type === 'send' ? sent : received) * len; 53 received++;
|
H A D | offset-length.js | 21 let received = 0; 41 const bytes = (type === 'send' ? sent : received) * chunk.length; 49 received++;
|
H A D | single-buffer.js | 21 let received = 0; 41 const bytes = (type === 'send' ? sent : received) * chunk.length; 49 received++;
|
/third_party/node/benchmark/net/ |
H A D | net-s2c.js | 20 let received = 0; 67 received += nread; 87 const bytes = received; 103 received += chunk.length;
|