Home
last modified time | relevance | path

Searched refs:sent (Results 76 - 100 of 221) sorted by relevance

123456789

/third_party/typescript/tests/baselines/reference/
H A DcastOfYield.js11 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
42 (_a.sent());
47 _a.sent();
H A DimportCallExpressionNestedAMD2.js28 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
61 case 1: return [4 /*yield*/, new Promise(function (resolve_2, reject_2) { require([(_a.sent()).default], resolve_2, reject_2); })];
62 case 2: return [2 /*return*/, _a.sent()];
H A DimportCallExpressionNestedCJS2.js26 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
58 case 1: return [4 /*yield*/, (_b = (_a.sent()).default, Promise.resolve().then(function () { return require(_b); }))];
59 case 2: return [2 /*return*/, _a.sent()];
H A DimportCallExpressionNestedES20152.js24 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
55 case 1: return [4 /*yield*/, import((_a.sent()).default)];
56 case 2: return [2 /*return*/, _a.sent()];
H A DimportCallExpressionNestedES20202.js25 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
56 case 1: return [4 /*yield*/, import((_a.sent()).default)];
57 case 2: return [2 /*return*/, _a.sent()];
H A DjsFileCompilationAwaitModifier.js24 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
58 _a.sent();
70 _a.sent();
H A Demitter.asyncGenerators.classMethods.es5.js65 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
117 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
164 case 1: return [4 /*yield*/, _a.sent()];
166 x = _a.sent();
176 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
223 case 1: return [4 /*yield*/, _a.sent()];
225 x = _a.sent();
235 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
305 case 1: return [4 /*yield*/, __await.apply(void 0, [_a.sent()])];
307 x = _a.sent();
[all...]
H A DclassStaticBlock7.js58 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
111 _a.sent();
137 _a.sent();
H A DimportCallExpressionNestedUMD2.js36 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
79 case 1: return [4 /*yield*/, (_b = (_a.sent()).default, __syncRequire ? Promise.resolve().then(function () { return require(_b); }) : new Promise(function (resolve_2, reject_2) { require([_b], resolve_2, reject_2); }))];
80 case 2: return [2 /*return*/, _a.sent()];
H A DoperationsAvailableOnPromisedType.js43 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
114 if (!(c_1_1 = _e.sent(), _b = c_1_1.done, !_b)) return [3 /*break*/, 5];
127 e_1_1 = _e.sent();
135 _e.sent();
H A DimportMeta(module=commonjs,target=es5).js53 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
87 response = _a.sent();
90 blob = _a.sent();
H A DimportMeta(module=es2020,target=es5).js52 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
85 response = _a.sent();
88 blob = _a.sent();
H A DimportMeta(module=esnext,target=es5).js52 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
85 response = _a.sent();
88 blob = _a.sent();
H A DtemplateStringWithEmbeddedYieldKeyword.js10 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
44 x = _a.apply("abc", [_b.sent(), "def"]);
/third_party/vk-gl-cts/external/vulkancts/vkscserver/
H A DvksNetwork.cpp75 msize sent{}; in Send()
76 auto result = socket->send(buffer.data() + sent_total, buffer.size() - sent_total, &sent); in Send()
79 sent_total += sent; in Send()
/third_party/python/Lib/
H A Dsocket.py388 sent = os_sendfile(sockno, fileno, offset, blocksize)
404 if sent == 0:
406 offset += sent
407 total_sent += sent
439 sent = sock_send(data)
443 total_sent += sent
444 if sent < len(data):
445 data = data[sent:]
467 """sendfile(file[, offset[, count]]) -> sent
471 were sent
[all...]
/third_party/libwebsockets/lib/system/async-dns/
H A Dprivate-lib-async-dns.h73 uint16_t tid[3]; /* last 3 sent tid */
79 uint8_t sent[2]; member
81 uint8_t sent[1]; member
/third_party/mesa3d/src/glx/
H A Dindirect_glx.c156 Bool sent; in indirect_bind_context() local
165 sent = SendMakeCurrentRequest(dpy, gc->xid, tag, draw, read, in indirect_bind_context()
168 if (sent) { in indirect_bind_context()
190 return !sent; in indirect_bind_context()
/third_party/curl/lib/vquic/
H A Dcurl_ngtcp2.c1432 ssize_t sent = 0; in cf_ngtcp2_send() local
1447 sent = -1; in cf_ngtcp2_send()
1451 sent = h3_stream_open(cf, data, buf, len, err); in cf_ngtcp2_send()
1452 if(sent < 0) { in cf_ngtcp2_send()
1467 sent = -1; in cf_ngtcp2_send()
1470 sent = (ssize_t)stream->upload_blocked_len; in cf_ngtcp2_send()
1475 /* Server decided to close the stream after having sent us a final in cf_ngtcp2_send()
1478 * We silently discard the data sent, since this is not a transport in cf_ngtcp2_send()
1483 sent = (ssize_t)len; in cf_ngtcp2_send()
1489 sent in cf_ngtcp2_send()
[all...]
/third_party/curl/tests/http/clients/
H A Dws-data.c162 size_t sent; in websocket_close() local
164 curl_ws_send(curl, "", 0, &sent, 0, CURLWS_CLOSE); in websocket_close()
166 "ws: curl_ws_send returned %u, sent %u\n", (int)result, (int)sent); in websocket_close()
/third_party/libcoap/include/coap3/
H A Dcoap_block_internal.h96 uint32_t count; /**< the number of packets sent for payload */
131 coap_tick_t last_payload; /**< Last time MAX_PAYLOAD was sent or 0 */
132 coap_tick_t last_sent; /**< Last time any data sent */
133 coap_tick_t last_all_sent; /**< Last time all data sent or 0 */
169 coap_tick_t last_used; /**< Last time all data sent or 0 */
198 coap_tick_t last_used; /**< Last time data sent or 0 */
288 int coap_handle_response_send_block(coap_session_t *session, coap_pdu_t *sent,
293 coap_pdu_t *sent,
314 coap_pdu_t *sent);
/third_party/node/deps/openssl/openssl/util/perl/TLSProxy/
H A DRecord.pm188 sent => 0,
280 if ($self->{sent} || ($self->flight & 1) != $server) {
283 $self->{sent} = 1;
/third_party/libcoap/examples/lwip/
H A Dclient-coap.c35 const coap_pdu_t *sent, in message_handler()
44 (void)sent; in message_handler()
58 const coap_pdu_t *sent COAP_UNUSED, in nack_handler()
167 /* resolve destination address where server should be sent */ in client_coap_init()
34 message_handler(coap_session_t *session, const coap_pdu_t *sent, const coap_pdu_t *received, const coap_mid_t id) message_handler() argument
/third_party/libcoap/examples/riot/examples_libcoap_client/
H A Dclient-coap.c49 const coap_pdu_t *sent, in message_handler()
58 (void)sent; in message_handler()
72 const coap_pdu_t *sent COAP_UNUSED, in nack_handler()
150 /* resolve destination address where packet should be sent */ in client_coap_init()
48 message_handler(coap_session_t *session, const coap_pdu_t *sent, const coap_pdu_t *received, const coap_mid_t id) message_handler() argument
/third_party/openssl/util/perl/TLSProxy/
H A DRecord.pm188 sent => 0,
280 if ($self->{sent} || ($self->flight & 1) != $server) {
283 $self->{sent} = 1;

Completed in 12 milliseconds

123456789