Home
last modified time | relevance | path

Searched defs:bytes (Results 201 – 225 of 9640) sorted by relevance

12345678910>>...386

/aosp_15_r20/external/grpc-grpc/third_party/address_sorting/
H A Daddress_sorting.c105 uint8_t* bytes = (uint8_t*)ipv6_address; in in6_is_addr_sitelocal() local
110 uint8_t* bytes = (uint8_t*)ipv6_address; in in6_is_addr_linklocal() local
115 uint8_t* bytes = (uint8_t*)ipv6_address; in in6_is_addr_6to4() local
120 uint8_t* bytes = (uint8_t*)ipv6_address; in in6_is_addr_ula() local
125 uint8_t* bytes = (uint8_t*)ipv6_address; in in6_is_addr_teredo() local
131 uint8_t* bytes = (uint8_t*)ipv6_address; in in6_is_addr_6bone() local
/aosp_15_r20/external/tink/python/examples/walkthrough/
H A Dobtain_and_use_a_primitive.py20 def AeadEncrypt(keyset_handle: tink.KeysetHandle, plaintext: bytes,
21 associated_data: bytes) -> bytes:
47 def AeadDecrypt(keyset_handle: tink.KeysetHandle, ciphertext: bytes,
48 associated_data: bytes) -> bytes:
/aosp_15_r20/external/python/pyfakefs/pyfakefs/
Dhelpers.py126 def to_string(path: Union[AnyStr, Union[str, bytes]]) -> str: argument
134 def to_bytes(path: Union[AnyStr, Union[str, bytes]]) -> bytes: argument
161 def matching_string(matched: bytes, string: AnyStr) -> bytes:
396 def __init__(self, contents: Optional[bytes]):
399 def putvalue(self, value: bytes) -> None:
408 contents: Optional[bytes] = None,
419 def putvalue(self, value: bytes) -> None:
/aosp_15_r20/external/tink/python/tink/daead/
H A D_deterministic_aead.py45 def encrypt_deterministically(self, plaintext: bytes,
46 associated_data: bytes) -> bytes:
50 def decrypt_deterministically(self, ciphertext: bytes,
51 associated_data: bytes) -> bytes:
H A D_deterministic_aead_key_manager.py30 def encrypt_deterministically(self, plaintext: bytes,
31 associated_data: bytes) -> bytes:
36 def decrypt_deterministically(self, ciphertext: bytes,
37 associated_data: bytes) -> bytes:
/aosp_15_r20/external/tink/python/tink/aead/
H A D_aead.py30 def encrypt(self, plaintext: bytes, associated_data: bytes) -> bytes:
47 def decrypt(self, ciphertext: bytes, associated_data: bytes) -> bytes:
H A D_aead_key_manager.py31 def encrypt(self, plaintext: bytes, associated_data: bytes) -> bytes:
35 def decrypt(self, plaintext: bytes, associated_data: bytes) -> bytes:
H A D_kms_envelope_aead.py76 def encrypt(self, plaintext: bytes, associated_data: bytes) -> bytes:
91 def decrypt(self, ciphertext: bytes, associated_data: bytes) -> bytes:
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/util/
H A DBitSetTest.java97 private static void assertBitSet(BitSet bs, byte[] bytes, String s) { in assertBitSet()
119 private static void assertBitSet(byte[] bytes, String s) { in assertBitSet()
121 assertBitSet(BitSet.valueOf(bytes), bytes, s); in assertBitSet() local
123 assertBitSet(BitSet.valueOf(ByteBuffer.wrap(bytes)), bytes, s); in assertBitSet() local
128 assertBitSet(BitSet.valueOf(ByteBuffer.wrap(paddedBytes, 1, bytes.length)), bytes, s); in assertBitSet() local
/aosp_15_r20/external/cronet/net/android/java/src/org/chromium/net/
H A DAndroidTrafficStats.java25 long bytes = TrafficStats.getTotalTxBytes(); in getTotalTxBytes() local
36 long bytes = TrafficStats.getTotalRxBytes(); in getTotalRxBytes() local
48 long bytes = TrafficStats.getUidTxBytes(Process.myUid()); in getCurrentUidTxBytes() local
60 long bytes = TrafficStats.getUidRxBytes(Process.myUid()); in getCurrentUidRxBytes() local
/aosp_15_r20/external/libcups/cups/
H A Dhttp.c678 ssize_t bytes; /* Bytes written */ in httpFlushWrite() local
1128 ssize_t bytes; /* Number of bytes read */ in httpGets() local
1600 ssize_t bytes; /* Bytes read */ in httpPeek() local
1862 ssize_t bytes; /* Number of bytes to write */ in httpPrintf() local
1939 ssize_t bytes; /* Bytes read */ in httpRead2() local
3147 ssize_t bytes; /* Bytes written */ in httpWrite2() local
3702 size_t bytes; /* Number of bytes to write */ in http_content_coding_finish() local
4020 int bytes) /* I - Bytes to dump */ in http_debug_hex()
4081 ssize_t bytes; /* Bytes read */ in http_read() local
4194 ssize_t bytes; /* Bytes read */ in http_read_buffered() local
[all …]
/aosp_15_r20/external/grpc-grpc/test/core/tsi/alts/frame_protector/
H A Dframe_handler_test.cc88 static size_t deframe(frame_handler* handler, unsigned char* bytes, in deframe()
108 unsigned char* bytes = in frame_n_deframe() local
174 unsigned char* bytes = in TEST() local
193 unsigned char* bytes = in TEST() local
219 unsigned char* bytes = in TEST() local
233 unsigned char* bytes = in TEST() local
/aosp_15_r20/tools/netsim/rust/daemon/src/bluetooth/
H A Dadvertise_data.rs41 bytes: Vec<u8>, field
137 let mut bytes = Vec::new(); in serialize() localVariable
221 let bytes = ad.unwrap().bytes; in test_from_proto_succeeds() localVariable
272 let bytes = ad.unwrap().bytes; in test_set_device_name_succeeds() localVariable
299 let bytes = ad.unwrap().bytes; in test_set_tx_power_level() localVariable
314 let bytes = ad.unwrap().bytes; in test_set_manufacturer_data_succeeds() localVariable
/aosp_15_r20/external/python/rsa/rsa/
Dpem.py36 def _pem_lines(contents: bytes, pem_start: bytes, pem_end: bytes) -> typing.Iterator[bytes]:
108 def save_pem(contents: bytes, pem_marker: FlexiText) -> bytes:
/aosp_15_r20/external/perfetto/src/tracing/
H A Dtrack.cc48 auto bytes = Serialize().SerializeAsString(); in Serialize() local
83 auto bytes = Serialize().SerializeAsString(); in Serialize() local
115 auto bytes = Serialize().SerializeAsString(); in Serialize() local
130 auto bytes = Serialize().SerializeAsString(); in Serialize() local
165 auto bytes = Serialize().SerializeAsString(); in Serialize() local
/aosp_15_r20/external/cronet/net/cert/
H A Dmock_cert_net_fetcher.cc15 std::vector<uint8_t> bytes) in MockCertNetFetcherRequest()
28 std::vector<uint8_t> bytes) { in Create()
35 auto bytes = x509_util::CryptoBufferAsSpan(buffer); in Create() local
40 std::vector<uint8_t>* bytes) { in WaitForResult()
/aosp_15_r20/external/openthread/tools/tcat_ble_client/tlv/
H A Dtlv.py35 def __init__(self, type: int = None, value: bytes = None):
43 def parse_tlvs(data: bytes) -> List[TLV]:
53 def from_bytes(data: bytes) -> TLV:
58 def set_from_bytes(self, data: bytes):
/aosp_15_r20/dalvik/dx/src/com/android/dx/command/dump/
H A DBaseDumper.java37 private final byte[] bytes; field in BaseDumper
84 public BaseDumper(byte[] bytes, PrintStream out, in BaseDumper()
132 public void parsed(ByteArray bytes, int offset, int len, String human) { in parsed()
144 public void startParsingMember(ByteArray bytes, int offset, String name, in startParsingMember()
151 public void endParsingMember(ByteArray bytes, int offset, String name, in endParsingMember()
/aosp_15_r20/frameworks/native/libs/ftl/
H A Dfuture_test.cpp59 ByteVector decrement(ByteVector bytes) { in decrement()
75 [](ByteVector bytes) { return ftl::defer(decrement, std::move(bytes)); }); in TEST()
91 .then([&](ByteVector bytes) { in TEST()
96 .then([](ftl::Future<ByteVector> bytes) { return bytes; }) in TEST()
97 .then([](const ByteVector& bytes) { return std::string(bytes.begin(), bytes.end()); }) in TEST()
/aosp_15_r20/external/cronet/net/android/
H A Dtraffic_stats.cc18 bool GetTotalTxBytes(int64_t* bytes) { in GetTotalTxBytes()
24 bool GetTotalRxBytes(int64_t* bytes) { in GetTotalRxBytes()
30 bool GetCurrentUidTxBytes(int64_t* bytes) { in GetCurrentUidTxBytes()
36 bool GetCurrentUidRxBytes(int64_t* bytes) { in GetCurrentUidRxBytes()
/aosp_15_r20/external/tink/python/tink/hybrid/
H A D_hybrid_key_manager.py31 def decrypt(self, ciphertext: bytes, context_info: bytes) -> bytes:
42 def encrypt(self, plaintext: bytes, context_info: bytes) -> bytes:
/aosp_15_r20/external/angle/build/android/gyp/
H A Dcreate_unwind_table.py468 def EncodeUnwindInstructionTable(complete_instruction_sequences: Iterable[bytes]
697 unwind_instruction_table_offsets: Dict[bytes, int]
910 def EncodeUnwindInfo(page_table: bytes, function_table: bytes,
911 function_offset_table: bytes,
912 unwind_instruction_table: bytes) -> bytes:
/aosp_15_r20/external/cronet/build/android/gyp/
H A Dcreate_unwind_table.py468 def EncodeUnwindInstructionTable(complete_instruction_sequences: Iterable[bytes]
697 unwind_instruction_table_offsets: Dict[bytes, int]
910 def EncodeUnwindInfo(page_table: bytes, function_table: bytes,
911 function_offset_table: bytes,
912 unwind_instruction_table: bytes) -> bytes:
/aosp_15_r20/tools/apksig/src/main/java/com/android/apksig/internal/apk/v4/
H A DV4Signature.java49 static HashingInfo fromByteArray(byte[] bytes) throws IOException { in fromByteArray()
88 static SigningInfo fromByteArray(byte[] bytes) throws IOException { in fromByteArray()
156 public static SigningInfos fromByteArray(byte[] bytes) throws IOException { in fromByteArray()
243 static int bytesSize(byte[] bytes) { in bytesSize()
294 static void writeBytes(OutputStream stream, byte[] bytes) throws IOException { in writeBytes()
303 static void writeBytes(ByteBuffer buffer, byte[] bytes) { in writeBytes()
/aosp_15_r20/external/rust/beto-rust/nearby/presence/rand_ext/src/
Dlib.rs28 let mut bytes = Vec::<u8>::new(); in random_vec() localVariable
35 let mut bytes = [0; B]; localVariable
42 let mut bytes = Vec::<u8>::new(); in random_vec_rc() localVariable
49 let mut bytes = [0; B]; localVariable

12345678910>>...386