/external/chromium-trace/catapult/third_party/coverage/coverage/ |
backward.py | 100 def bytes_to_ints(bytes_value): 103 return bytes_value 118 def bytes_to_ints(bytes_value): 120 for byte in bytes_value:
|
/packages/services/Car/libvehiclenetwork/proto/ |
VehicleNetworkProto.proto | 55 optional bytes bytes_value = 9;
|
/packages/services/Car/libvehiclenetwork/native/ |
VehicleNetworkProtoUtil.cpp | 52 if (in.value.bytes_value.len > 0) { 53 out.set_bytes_value(in.value.bytes_value.data, in.value.bytes_value.len); 134 out.value.bytes_value.data = NULL; 135 out.value.bytes_value.len = 0; 143 status_t r = copyString(in.bytes_value(), &(out.value.bytes_value.data), 144 &(out.value.bytes_value.len)); 146 out.value.bytes_value.data = NULL; 147 out.value.bytes_value.len = 0 [all...] |
/hardware/libhardware/tests/vehicle/ |
vehicle-hal-tool.c | 103 printf("Value type: BYTES\n Size: %d", data->value.bytes_value.len); 104 for (int i = 0; i < data->value.bytes_value.len; i++) { 108 printf("%02X ", data->value.bytes_value.data[i]); 270 vehicle_data.value.bytes_value.len = numBytes; 271 vehicle_data.value.bytes_value.data = buf;
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/ |
protobuf_test.py | 82 proto.bytes_value = b'a bytes\xff\xfe' 104 proto.bytes_value.append(b'a bytes\xff\xfe') 105 proto.bytes_value.append(b'another bytes')
|
test_util.py | 292 bytes_value = messages.BytesField(8, variant=messages.Variant.BYTES) variable in class:OptionalMessage 330 bytes_value = messages.BytesField(8, variable in class:RepeatedMessage 382 bytes_value: b"a bytes\xff\xfe" 395 bytes_value: [b"a bytes\xff\xfe", b"another bytes"] 483 message.bytes_value = b'a bytes\xff\xfe' 498 message.bytes_value = [b'a bytes\xff\xfe', b'another bytes']
|
protojson_test.py | 113 "bytes_value": "YSBieXRlc//+", 126 "bytes_value": ["YSBieXRlc//+", "YW5vdGhlciBieXRlcw=="], 402 '{"bytes_value": "abcdefghijklmnopq"}')
|
/hardware/libhardware/include/hardware/ |
vehicle.h | 1505 vehicle_bytes_t bytes_value; member in union:vehicle_value [all...] |