Home
last modified time | relevance | path

Searched refs:bytes_value (Results 1 – 21 of 21) sorted by relevance

/external/perfetto/include/perfetto/trace_processor/
Dbasic_types.h147 value.bytes_value = v; in Bytes()
167 return bytes_value; in AsBytes()
179 const void* bytes_value; member
/external/protobuf/php/src/Google/Protobuf/Internal/
DGPBJsonWire.php223 $bytes_value = base64_encode($value);
225 $output->writeRaw($bytes_value, strlen($bytes_value));
/external/perfetto/src/trace_processor/db/
Dcompare.h176 return compare::Bytes(a.bytes_value, a.bytes_count, b.bytes_value, in SqlValue()
/external/tensorflow/tensorflow/python/kernel_tests/proto/
Dtest_example.proto49 repeated bytes bytes_value = 12; field
96 repeated bytes bytes_value = 12; field
134 optional bytes bytes_value = 12; field
/external/python/apitools/apitools/base/protorpclite/
Dtest_util.py298 bytes_value = messages.BytesField(8, variant=messages.Variant.BYTES) variable in OptionalMessage
331 bytes_value = messages.BytesField(8, variable in RepeatedMessage
482 message.bytes_value = b'a bytes\xff\xfe'
497 message.bytes_value = [b'a bytes\xff\xfe', b'another bytes']
/external/icing/icing/
Ddocument-builder.h166 for (const std::string& bytes_value : bytes_values) { in AddBytesProperty() local
167 property->mutable_bytes_values()->Add(std::string(bytes_value)); in AddBytesProperty()
/external/protobuf/php/tests/proto/
Dtest_wrapper_type_setters.proto16 google.protobuf.BytesValue bytes_value = 9; field
/external/llvm-project/mlir/test/Bindings/Python/
Dir_operation.py464 bytes_value = f.getvalue()
465 print(bytes_value.__class__)
466 print(bytes_value)
/external/perfetto/src/trace_processor/metrics/
Dmetrics.cc65 sql_value.bytes_value = sqlite3_value_blob(value); in SqlValueFromSqliteValue()
88 static_cast<const uint8_t*>(value.bytes_value), in AppendSqlValue()
323 const auto& bytes = value.bytes_value(); in AppendRepeated()
372 AddBytes(static_cast<const uint8_t*>(value.bytes_value), in AddSqlValue()
/external/perfetto/src/trace_processor/
Diterator_impl.h92 value.bytes_value = sqlite3_column_blob(*stmt_, column); in Get()
/external/protobuf/src/google/protobuf/util/
Djson_format_proto3.proto64 bytes bytes_value = 9; field
125 google.protobuf.BytesValue bytes_value = 9; field
/external/perfetto/src/trace_processor/rpc/
Dquery_result_serializer_unittest.cc45 return memcmp(a.bytes_value, b.bytes_value, a.bytes_count) == 0; in operator ==()
57 << base::ToHex(reinterpret_cast<const char*>(v.bytes_value), in operator <<()
Dquery_result_serializer.cc175 auto* src = static_cast<const uint8_t*>(value.bytes_value); in SerializeBatch()
/external/protobuf/src/google/protobuf/util/internal/testdata/
Ddefault_value_test.proto45 bytes bytes_value = 17 [ctype = CORD]; field
/external/perfetto/protos/perfetto/trace_processor/
Dmetrics_impl.proto43 bytes bytes_value = 4; field
/external/perfetto/src/trace_processor/sqlite/
Ddb_sqlite_table.cc76 value.bytes_value = sqlite3_value_blob(sqlite_val); in SqliteValueToSqlValue()
597 sqlite3_result_blob(ctx, value.bytes_value, in Column()
/external/tensorflow/tensorflow/core/profiler/utils/
Dxplane_builder.h159 dst_stat->set_bytes_value(src_stat.bytes_value()); in CopyStatValue()
/external/protobuf/java/util/src/test/proto/com/google/protobuf/util/
Djson_test.proto157 google.protobuf.BytesValue bytes_value = 9; field
/external/tensorflow/tensorflow/core/profiler/protobuf/
Dxplane.proto113 bytes bytes_value = 6; field
/external/protobuf/python/google/protobuf/internal/
Djson_format_test.py72 message.bytes_value = b'bar'
513 message.bytes_value.value = b''
/external/protobuf/php/ext/google/protobuf/
Dmessage.c1844 BytesValue, bytes_value)
1855 PHP_PROTO_FIELD_ACCESSORS(BytesValue, bytes_value, Value, "value")