/third_party/nghttp2/src/ |
H A D | inflatehd.cc | 75 json_t *wire, int seq, size_t old_settings_table_size) { in to_json() 78 json_object_set(obj, "wire", wire); in to_json() 102 auto wire = json_object_get(obj, "wire"); in inflate_hd() local 104 if (wire == nullptr) { in inflate_hd() 105 fprintf(stderr, "'wire' key is missing at %d\n", seq); in inflate_hd() 109 if (!json_is_string(wire)) { in inflate_hd() 110 fprintf(stderr, "'wire' value is not string at %d\n", seq); in inflate_hd() 133 auto inputlen = strlen(json_string_value(wire)); in inflate_hd() 74 to_json(nghttp2_hd_inflater *inflater, json_t *headers, json_t *wire, int seq, size_t old_settings_table_size) to_json() argument [all...] |
/third_party/backends/backend/ |
H A D | net.c | 479 sanei_w_init (&dev->wire, sanei_codec_bin_init); 480 dev->wire.io.fd = dev->ctl; 481 dev->wire.io.read = read; 482 dev->wire.io.write = write; 490 sanei_w_call (&dev->wire, SANE_NET_INIT, 494 if (dev->wire.status != 0) 497 strerror (dev->wire.status)); 508 sanei_w_free (&dev->wire, (WireCodecFunc) sanei_w_init_reply, &reply); 531 dev->wire.version = SANE_VERSION_BUILD (version_code); 553 sanei_w_set_dir (&s->hw->wire, WIRE_FRE [all...] |
H A D | net.h | 61 Wire wire; member
|
/third_party/skia/src/core/ |
H A D | SkRemoteGlyphCache.cpp | 634 WireTypeface wire(SkTypeface::UniqueID(tf), tf->countGlyphs(), tf->fontStyle(), in serializeTypeface() 637 SkData::MakeWithCopy(&wire, sizeof(wire))); in serializeTypeface() 892 sk_sp<SkTypeface> addTypeface(const WireTypeface& wire); 950 WireTypeface wire; in readStrikeData() local 951 if (!deserializer.read<WireTypeface>(&wire)) READ_FAILURE in readStrikeData() 956 addTypeface(wire); in readStrikeData() 1061 WireTypeface wire; in deserializeTypeface() local 1062 if (len != sizeof(wire)) return nullptr; in deserializeTypeface() 1063 memcpy(&wire, bu in deserializeTypeface() 1067 addTypeface(const WireTypeface& wire) addTypeface() argument [all...] |
/third_party/mesa3d/src/glx/ |
H A D | dri2.c | 61 DRI2WireToEvent(Display *dpy, XEvent *event, xEvent *wire); 63 DRI2EventToWire(Display *dpy, XEvent *event, xEvent *wire); 88 DRI2WireToEvent(Display *dpy, XEvent *event, xEvent *wire) in DRI2WireToEvent() argument 95 switch ((wire->u.u.type & 0x7f) - info->codes->first_event) { in DRI2WireToEvent() 100 xDRI2BufferSwapComplete2 *awire = (xDRI2BufferSwapComplete2 *)wire; in DRI2WireToEvent() 112 aevent->serial = _XSetLastRequestRead(dpy, (xGenericReply *) wire); in DRI2WireToEvent() 147 xDRI2InvalidateBuffers *awire = (xDRI2InvalidateBuffers *)wire; in DRI2WireToEvent() 164 DRI2EventToWire(Display *dpy, XEvent *event, xEvent *wire) in DRI2EventToWire() argument
|
H A D | glxext.c | 67 ** we require 2 words across the wire. In order to maintain backwards 146 __glXWireToEvent(Display *dpy, XEvent *event, xEvent *wire) in __glXWireToEvent() argument 153 switch ((wire->u.u.type & 0x7f) - glx_dpy->codes.first_event) { in __glXWireToEvent() 157 xGLXPbufferClobberEvent *awire = (xGLXPbufferClobberEvent *)wire; in __glXWireToEvent() 175 xGLXBufferSwapComplete2 *awire = (xGLXBufferSwapComplete2 *)wire; in __glXWireToEvent() 181 aevent->serial = _XSetLastRequestRead(dpy, (xGenericReply *) wire); in __glXWireToEvent() 189 /* Handle 32-Bit wire sbc wraparound in both directions to cope with out in __glXWireToEvent() 212 __glXEventToWire(Display *dpy, XEvent *event, xEvent *wire) in __glXEventToWire() argument
|
/third_party/backends/frontend/ |
H A D | saned.c | 250 static Wire wire; variable 367 if (wire.status) in auth_callback() 369 DBG(DBG_ERR, "auth_callback: bad status %d\n", wire.status); in auth_callback() 381 sanei_w_reply (&wire, (WireCodecFunc) sanei_w_open_reply, &reply); in auth_callback() 391 sanei_w_reply (&wire, in auth_callback() 402 sanei_w_reply (&wire, (WireCodecFunc) sanei_w_start_reply, &reply); in auth_callback() 413 if (wire.status) in auth_callback() 415 DBG(DBG_ERR, "auth_callback: bad status %d\n", wire.status); in auth_callback() 421 sanei_w_set_dir (&wire, WIRE_DECODE); in auth_callback() 422 sanei_w_word (&wire, in auth_callback() [all...] |
/third_party/node/deps/openssl/openssl/ssl/statem/ |
H A D | statem_dtls.c | 804 unsigned char wire[DTLS1_HM_HEADER_LENGTH]; in dtls_get_reassembled_message() local 827 i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, &recvd_type, wire, in dtls_get_reassembled_message() 835 if (wire[0] != SSL3_MT_CCS) { in dtls_get_reassembled_message() 841 memcpy(s->init_buf->data, wire, readbytes); in dtls_get_reassembled_message() 857 dtls1_get_message_header(wire, &msg_hdr); in dtls_get_reassembled_message() 882 || wire[0] != SSL3_MT_CLIENT_HELLO in dtls_get_reassembled_message() 903 && wire[0] == SSL3_MT_HELLO_REQUEST) { in dtls_get_reassembled_message() 909 if (wire[1] == 0 && wire[2] == 0 && wire[ in dtls_get_reassembled_message() [all...] |
/third_party/openssl/ssl/statem/ |
H A D | statem_dtls.c | 808 unsigned char wire[DTLS1_HM_HEADER_LENGTH]; in dtls_get_reassembled_message() local 831 i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, &recvd_type, wire, in dtls_get_reassembled_message() 839 if (wire[0] != SSL3_MT_CCS) { in dtls_get_reassembled_message() 845 memcpy(s->init_buf->data, wire, readbytes); in dtls_get_reassembled_message() 861 dtls1_get_message_header(wire, &msg_hdr); in dtls_get_reassembled_message() 886 || wire[0] != SSL3_MT_CLIENT_HELLO in dtls_get_reassembled_message() 907 && wire[0] == SSL3_MT_HELLO_REQUEST) { in dtls_get_reassembled_message() 913 if (wire[1] == 0 && wire[2] == 0 && wire[ in dtls_get_reassembled_message() [all...] |
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-inspector-session-impl.cc | 117 protocol::Runtime::Dispatcher::wire(&m_dispatcher, m_runtimeAgent.get()); in V8InspectorSessionImpl() 121 protocol::Debugger::Dispatcher::wire(&m_dispatcher, m_debuggerAgent.get()); in V8InspectorSessionImpl() 125 protocol::Profiler::Dispatcher::wire(&m_dispatcher, m_profilerAgent.get()); in V8InspectorSessionImpl() 129 protocol::HeapProfiler::Dispatcher::wire(&m_dispatcher, in V8InspectorSessionImpl() 134 protocol::Console::Dispatcher::wire(&m_dispatcher, m_consoleAgent.get()); in V8InspectorSessionImpl() 138 protocol::Schema::Dispatcher::wire(&m_dispatcher, m_schemaAgent.get()); in V8InspectorSessionImpl()
|
/third_party/node/src/inspector/ |
H A D | runtime_agent.cc | 15 NodeRuntime::Dispatcher::wire(dispatcher, this); in Wire()
|
H A D | tracing_agent.cc | 133 NodeTracing::Dispatcher::wire(dispatcher, this); in Wire()
|
H A D | worker_agent.cc | 86 NodeWorker::Dispatcher::wire(dispatcher, this); in Wire()
|
/third_party/skia/third_party/externals/angle2/src/third_party/libXNVCtrl/ |
H A D | NVCtrl.c | 1117 static Bool wire_to_event (Display *dpy, XEvent *host, xEvent *wire) in wire_to_event() argument 1130 switch ((wire->u.u.type & 0x7F) - info->codes->first_event) { in wire_to_event() 1133 event = (xnvctrlEvent *) wire; in wire_to_event() 1148 eventTarget = (xnvctrlEventTarget *) wire; in wire_to_event() 1170 eventTarget = (xnvctrlEventTarget *) wire; in wire_to_event() 1195 eventTarget = (xnvctrlEventTarget *) wire; in wire_to_event() 1215 eventTarget = (xnvctrlEventTarget *) wire; in wire_to_event()
|
/third_party/protobuf/js/experimental/runtime/kernel/ |
H A D | tag.js | 8 * Returns wire type stored in a tag. 9 * Protos store the wire type as the first 3 bit of a tag. 102 throw new Error(`Unexpected wire type: ${wireType}`);
|
H A D | kernel.js | 33 * Validates the index entry has the correct wire type. 41 `Expected wire type: ${expected} but found: ${wireType}`);
|
/third_party/libwebsockets/minimal-examples/api-tests/api-test-lws_struct-json/ |
H A D | main.c | 25 const char *wire; member 76 LSM_STRING_PTR (sai_jig_gpio_t, wire, "wire"), 122 "\"wire\": \"RST\"," 128 "\"wire\": \"P6\","
|
/third_party/backends/sanei/ |
H A D | sanei_DomainOS.c | 189 scsi_$wire(scsi_handle, (void *)DataBasePtr, DomainMaxDataSize + DomainSenseSize, &com->CommandStatus); in DomainSCSIOpen() 193 DBG(2, "Buffer wire was successful\n"); in DomainSCSIOpen() 198 DBG(1, "Buffer wire failed, Domain/OS status is %08x\n", com->CommandStatus.all); in DomainSCSIOpen() 328 /* Issue the sense command (wire, issue, wait, unwire */ in DomainSCSIWait()
|
/third_party/skia/tools/viewer/ |
H A D | Viewer.cpp | 1932 bool* wire = ¶ms.fGrContextOptions.fWireframeMode; in drawImGui() local 1933 if (ctx && ImGui::Checkbox("Wireframe Mode", wire)) { in drawImGui()
|
/third_party/python/Lib/test/ |
H A D | test_enum.py | 1522 wire = 'hard' variable in TestSpecial.test_introspection.String
|