Home
last modified time | relevance | path

Searched refs:field_value (Results 1 - 25 of 26) sorted by relevance

12

/third_party/protobuf/python/google/protobuf/internal/
H A Dpython_message.py526 for field_name, field_value in kwargs.items():
531 if field_value is None:
539 for key in field_value:
540 copy[key].MergeFrom(field_value[key])
542 copy.update(field_value)
544 for val in field_value:
551 field_value = [_GetIntegerEnumValue(field.enum_type, val)
552 for val in field_value]
553 copy.extend(field_value)
557 new_val = field_value
[all...]
/third_party/nghttp2/tests/
H A Dnghttp2_frame_test.c455 static const uint8_t field_value[] = "h2=\":443\""; in test_nghttp2_frame_pack_altsvc() local
471 buf.last = nghttp2_cpymem(buf.last, field_value, sizeof(field_value) - 1); in test_nghttp2_frame_pack_altsvc()
475 sizeof(field_value) - 1); in test_nghttp2_frame_pack_altsvc()
477 payloadlen = 2 + sizeof(origin) - 1 + sizeof(field_value) - 1; in test_nghttp2_frame_pack_altsvc()
492 CU_ASSERT(sizeof(field_value) - 1 == oaltsvc.field_value_len); in test_nghttp2_frame_pack_altsvc()
494 memcmp(field_value, oaltsvc.field_value, sizeof(field_value) - 1)); in test_nghttp2_frame_pack_altsvc()
599 static const uint8_t field_value[] in test_nghttp2_frame_pack_priority_update() local
[all...]
H A Dnghttp2_session_test.c2429 static const uint8_t field_value[] = "h2=\":443\""; in test_nghttp2_session_recv_altsvc() local
2446 nghttp2_frame_hd_init(&hd, 2 + sizeof(origin) - 1 + sizeof(field_value) - 1, in test_nghttp2_session_recv_altsvc()
2453 buf.last = nghttp2_cpymem(buf.last, field_value, sizeof(field_value) - 1); in test_nghttp2_session_recv_altsvc()
2515 nghttp2_frame_hd_init(&hd, 2 + sizeof(origin) - 1 + sizeof(field_value) - 1, in test_nghttp2_session_recv_altsvc()
2522 buf.last = nghttp2_cpymem(buf.last, field_value, sizeof(field_value) - 1); in test_nghttp2_session_recv_altsvc()
2537 nghttp2_frame_hd_init(&hd, 2 + sizeof(field_value) - 1, NGHTTP2_ALTSVC, in test_nghttp2_session_recv_altsvc()
2543 buf.last = nghttp2_cpymem(buf.last, field_value, sizeof(field_value) in test_nghttp2_session_recv_altsvc()
2792 static const uint8_t field_value[] = "u=2,i"; test_nghttp2_session_recv_priority_update() local
4546 uint8_t field_value[] = "h2=\\":443\\""; test_nghttp2_session_on_altsvc_received() local
6700 const uint8_t field_value[] = "h2=\\":443\\""; test_nghttp2_submit_altsvc() local
6853 const uint8_t field_value[] = "i"; test_nghttp2_submit_priority_update() local
10777 static const uint8_t field_value[] = "u=2"; test_nghttp2_session_change_extpri_stream_priority() local
11800 static const uint8_t field_value[] = "u=0"; test_nghttp2_session_server_fallback_rfc7540_priorities() local
[all...]
/third_party/mesa3d/src/intel/common/
H A Dintel_decoder.c272 field_value(uint64_t value, int start, int end) in field_value() function
803 return field_value(p[0], field->start, field->end) + group->bias; in intel_group_get_length()
809 uint32_t type = field_value(h, 29, 31); in intel_group_get_length()
813 uint32_t opcode = field_value(h, 23, 28); in intel_group_get_length()
817 return field_value(h, 0, 7) + 2; in intel_group_get_length()
822 return field_value(h, 0, 7) + 2; in intel_group_get_length()
826 uint32_t subtype = field_value(h, 27, 28); in intel_group_get_length()
827 uint32_t opcode = field_value(h, 24, 26); in intel_group_get_length()
828 uint16_t whole_opcode = field_value(h, 16, 31); in intel_group_get_length()
834 return field_value( in intel_group_get_length()
[all...]
/third_party/nghttp2/lib/
H A Dnghttp2_frame.c201 uint8_t *field_value, size_t field_value_len) { in nghttp2_frame_altsvc_init()
210 altsvc->field_value = field_value; in nghttp2_frame_altsvc_init()
222 altsvc->field_value. */ in nghttp2_frame_altsvc_free()
257 int32_t stream_id, uint8_t *field_value, in nghttp2_frame_priority_update_init()
266 priority_update->field_value = field_value; in nghttp2_frame_priority_update_init()
278 nghttp2_mem_free(mem, priority_update->field_value); in nghttp2_frame_priority_update_free()
741 rv = nghttp2_bufs_add(bufs, altsvc->field_value, altsvc->field_value_len); in nghttp2_frame_pack_altsvc()
761 altsvc->field_value in nghttp2_frame_unpack_altsvc_payload()
199 nghttp2_frame_altsvc_init(nghttp2_extension *frame, int32_t stream_id, uint8_t *origin, size_t origin_len, uint8_t *field_value, size_t field_value_len) nghttp2_frame_altsvc_init() argument
256 nghttp2_frame_priority_update_init(nghttp2_extension *frame, int32_t stream_id, uint8_t *field_value, size_t field_value_len) nghttp2_frame_priority_update_init() argument
[all...]
H A Dnghttp2_submit.c504 size_t origin_len, const uint8_t *field_value, in nghttp2_submit_altsvc()
549 p = nghttp2_cpymem(p, field_value, field_value_len); in nghttp2_submit_altsvc()
672 const uint8_t *field_value, in nghttp2_submit_priority_update()
702 p = nghttp2_cpymem(buf, field_value, field_value_len); in nghttp2_submit_priority_update()
502 nghttp2_submit_altsvc(nghttp2_session *session, uint8_t flags, int32_t stream_id, const uint8_t *origin, size_t origin_len, const uint8_t *field_value, size_t field_value_len) nghttp2_submit_altsvc() argument
670 nghttp2_submit_priority_update(nghttp2_session *session, uint8_t flags, int32_t stream_id, const uint8_t *field_value, size_t field_value_len) nghttp2_submit_priority_update() argument
H A Dnghttp2_frame.h509 * Also |origin| and |field_value| are allocated in single buffer,
515 uint8_t *field_value, size_t field_value_len);
547 * takes ownership of |field_value|, so caller must not free it.
550 int32_t stream_id, uint8_t *field_value,
556 * function only frees field_value pointed by
557 * nghttp2_ext_priority_update.field_value.
H A Dnghttp2_session.c5319 rv = nghttp2_http_parse_priority(&extpri, priority_update->field_value, in nghttp2_session_on_priority_update_received()
5322 /* Just ignore field_value if it cannot be parsed. */ in nghttp2_session_on_priority_update_received()
/third_party/node/deps/nghttp2/lib/
H A Dnghttp2_frame.c201 uint8_t *field_value, size_t field_value_len) { in nghttp2_frame_altsvc_init()
210 altsvc->field_value = field_value; in nghttp2_frame_altsvc_init()
222 altsvc->field_value. */ in nghttp2_frame_altsvc_free()
257 int32_t stream_id, uint8_t *field_value, in nghttp2_frame_priority_update_init()
266 priority_update->field_value = field_value; in nghttp2_frame_priority_update_init()
278 nghttp2_mem_free(mem, priority_update->field_value); in nghttp2_frame_priority_update_free()
741 rv = nghttp2_bufs_add(bufs, altsvc->field_value, altsvc->field_value_len); in nghttp2_frame_pack_altsvc()
761 altsvc->field_value in nghttp2_frame_unpack_altsvc_payload()
199 nghttp2_frame_altsvc_init(nghttp2_extension *frame, int32_t stream_id, uint8_t *origin, size_t origin_len, uint8_t *field_value, size_t field_value_len) nghttp2_frame_altsvc_init() argument
256 nghttp2_frame_priority_update_init(nghttp2_extension *frame, int32_t stream_id, uint8_t *field_value, size_t field_value_len) nghttp2_frame_priority_update_init() argument
[all...]
H A Dnghttp2_submit.c504 size_t origin_len, const uint8_t *field_value, in nghttp2_submit_altsvc()
549 p = nghttp2_cpymem(p, field_value, field_value_len); in nghttp2_submit_altsvc()
672 const uint8_t *field_value, in nghttp2_submit_priority_update()
702 p = nghttp2_cpymem(buf, field_value, field_value_len); in nghttp2_submit_priority_update()
502 nghttp2_submit_altsvc(nghttp2_session *session, uint8_t flags, int32_t stream_id, const uint8_t *origin, size_t origin_len, const uint8_t *field_value, size_t field_value_len) nghttp2_submit_altsvc() argument
670 nghttp2_submit_priority_update(nghttp2_session *session, uint8_t flags, int32_t stream_id, const uint8_t *field_value, size_t field_value_len) nghttp2_submit_priority_update() argument
H A Dnghttp2_frame.h509 * Also |origin| and |field_value| are allocated in single buffer,
515 uint8_t *field_value, size_t field_value_len);
547 * takes ownership of |field_value|, so caller must not free it.
550 int32_t stream_id, uint8_t *field_value,
556 * function only frees field_value pointed by
557 * nghttp2_ext_priority_update.field_value.
H A Dnghttp2_session.c5314 rv = nghttp2_http_parse_priority(&extpri, priority_update->field_value, in nghttp2_session_on_priority_update_received()
5317 /* Just ignore field_value if it cannot be parsed. */ in nghttp2_session_on_priority_update_received()
/third_party/node/deps/v8/src/snapshot/
H A Dserializer.cc1147 const byte* field_value) { in OutputRawWithCustomField()
1153 sink->PutRaw(field_value, field_size, "Bytes"); in OutputRawWithCustomField()
1193 uint16_t field_value = BytecodeArray::kNoAgeBytecodeAge; in OutputRawData() local
1196 sizeof(field_value), in OutputRawData()
1197 reinterpret_cast<byte*>(&field_value)); in OutputRawData()
1201 static byte field_value[2] = {0}; in OutputRawData() local
1205 sizeof(field_value), field_value); in OutputRawData()
1213 static byte field_value[kTaggedSize + kExternalPointerSize] = {0}; in OutputRawData() local
1217 sizeof(field_value), field_valu in OutputRawData()
1144 OutputRawWithCustomField(SnapshotByteSink* sink, Address object_start, int written_so_far, int bytes_to_write, int field_offset, int field_size, const byte* field_value) OutputRawWithCustomField() argument
[all...]
/third_party/node/deps/v8/src/deoptimizer/
H A Dtranslated-state.cc1875 Handle<HeapObject> field_value = slot->storage(); in InitializeJSObjectAt() local
1876 WRITE_FIELD(*object_storage, offset, *field_value); in InitializeJSObjectAt()
1877 WRITE_BARRIER(*object_storage, offset, *field_value); in InitializeJSObjectAt()
1880 Handle<Object> field_value = slot->GetValue(); in InitializeJSObjectAt() local
1881 DCHECK_IMPLIES(field_value->IsHeapNumber(), in InitializeJSObjectAt()
1882 !IsSmiDouble(field_value->Number())); in InitializeJSObjectAt()
1883 WRITE_FIELD(*object_storage, offset, *field_value); in InitializeJSObjectAt()
1884 WRITE_BARRIER(*object_storage, offset, *field_value); in InitializeJSObjectAt()
1912 Handle<Object> field_value; in InitializeObjectWithTaggedFieldsAt() local
1914 field_value in InitializeObjectWithTaggedFieldsAt()
[all...]
/third_party/nghttp2/lib/includes/nghttp2/
H A Dnghttp2.h4753 uint8_t *field_value; member
4755 * The length of the |field_value|.
4797 const uint8_t *field_value,
4896 uint8_t *field_value; member
4898 * The length of the :member:`field_value`.
4915 * |field_value| points to the Priority field value. The
4940 const uint8_t *field_value,
/third_party/node/deps/nghttp2/lib/includes/nghttp2/
H A Dnghttp2.h4737 uint8_t *field_value; member
4739 * The length of the |field_value|.
4781 const uint8_t *field_value,
4880 uint8_t *field_value; member
4882 * The length of the :member:`field_value`.
4899 * |field_value| points to the Priority field value. The
4924 const uint8_t *field_value,
/third_party/nghttp2/src/
H A Dapp_helper.cc359 static_cast<int>(altsvc->field_value_len), altsvc->field_value); in print_frame()
379 priority_update->field_value); in print_frame()
/third_party/rust/crates/clap/clap_derive/src/derives/
H A Dargs.rs656 let field_value = match **ty { in gen_parsers()
720 *#field_name = #field_value in gen_parsers()
724 quote_spanned!(field.span()=> #field_name: #field_value ) in gen_parsers()
/third_party/protobuf/python/google/protobuf/pyext/
H A Dmessage.cc2115 PyObject* field_value = GetFieldValue(self, fields[i]); in ListFields() local
2116 if (field_value == NULL) { in ListFields()
2121 PyTuple_SET_ITEM(t.get(), 1, field_value); in ListFields()
/third_party/node/deps/v8/tools/
H A Dgrokdump.py1209 field_value = self.heap.reader.ReadTagged(self.address + offset)
1210 return self.heap.FindObjectOrSmi(field_value)
1213 field_value = self.heap.reader.ReadTagged(self.address + offset)
1214 if self.heap.IsSmi(field_value):
1215 return self.heap.SmiUntag(field_value)
/third_party/node/deps/v8/src/wasm/
H A Dgraph-builder-interface.cc1061 const Value& field_value) { in StructSet()
1063 field.field_imm.index, field_value.node, in StructSet()
H A Dfunction-body-decoder-impl.h1027 const FieldImmediate<validate>& field, const Value& field_value) \
4161 Value field_value = in DecodeGCOpcode() local
4166 field_value); in DecodeGCOpcode()
/third_party/node/src/
H A Dnode_http2.cc1481 OneByteString(isolate, altsvc->field_value, altsvc->field_value_len) in HandleAltSvcFrame()
/third_party/node/deps/v8/src/torque/
H A Dimplementation-visitor.cc2501 VisitResult field_value = scope.Yield(GenerateFetchFromLocation( in GenerateFetchFromLocation() local
2503 result_range.Extend(field_value.stack_range()); in GenerateFetchFromLocation()
/third_party/node/deps/v8/src/compiler/
H A Dwasm-compiler.cc6038 uint32_t field_index, Node* field_value,
6044 gasm_->StoreStructField(struct_object, struct_type, field_index, field_value);

Completed in 103 milliseconds

12