Home
last modified time | relevance | path

Searched refs:read (Results 1 – 25 of 82) sorted by relevance

1234

/btstack/tool/
H A Ddump_tlv.py10 a = f.read(1)
13 b = f.read(1)
16 c = f.read(1)
19 d = f.read(1)
56 tag = fin.read(4)
62 packet = fin.read(len)
H A Dsm_random_check.py15 a = f.read(1)
18 b = f.read(1)
21 c = f.read(1)
24 d = f.read(1)
46 type = ord(fin.read(1))
51 packet = fin.read(packet_len)
H A Ddump_h4.py21 bytes_read = f.read(13)
53 packet = fin.read(packet_len)
H A Ddump_pklg.py21 bytes_read = f.read(13)
53 packet = fin.read(packet_len)
H A Ddump_keys.py33 bytes_read = f.read(13)
123 packet = fin.read(packet_len)
/btstack/3rd-party/lwip/core/src/apps/http/
H A Dfs.c118 int read; in fs_read_async() local
136 read = file->len - file->index; in fs_read_async()
137 if (read > count) { in fs_read_async()
138 read = count; in fs_read_async()
141 MEMCPY(buffer, (file->data + file->index), read); in fs_read_async()
142 file->index += read; in fs_read_async()
144 return (read); in fs_read_async()
/btstack/test/hfp/
H A Ddump_test_sequence_from_pklg.py22 a = f.read(1)
23 b = f.read(1)
24 c = f.read(1)
25 d = f.read(1)
54 type = ord(fin.read(1))
56 packet = fin.read(packet_len)
/btstack/platform/daemon/binding/java/src/com/bluekitchen/btstack/
H A DUtil.java51 int read; in readExactly() local
52 read = in.read(buffer, offset, len); in readExactly()
53 if (read < 0) break; in readExactly()
54 len -= read; in readExactly()
55 offset += read; in readExactly()
56 readTotal += read; in readExactly()
/btstack/test/gatt_client/
H A Dprofile.gatt56 …and 128 bit with different authoriztion/authentication/encryption requirements and read/write flags
62 // - neither read nor writable
85 // - read/write, incl. server characteristic configuration, characteristic format (uint8_t, exponen…
92 // - read/write/write without response
94 // - read/write without response
96 // - read/authenticated signed writes
103 …and 128 bit with different authoriztion/authentication/encryption requirements and read/write flags
109 // - neither read nor writable
/btstack/test/gatt_server/
H A Dprofile.gatt56 …and 128 bit with different authoriztion/authentication/encryption requirements and read/write flags
62 // - neither read nor writable
85 // - read/write, incl. server characteristic configuration, characteristic format (uint8_t, exponen…
92 // - read/write/write without response
94 // - read/write without response
96 // - read/authenticated signed writes
103 …and 128 bit with different authoriztion/authentication/encryption requirements and read/write flags
109 // - neither read nor writable
/btstack/3rd-party/lc3-google/python/tools/
H A Ddecoder.py50 header = struct.unpack('=HHHHHHHI', f_lc3.read(18))
82 lc3_frame_size = struct.unpack('=H', f_lc3.read(2))[0]
83 pcm = dec.decode(f_lc3.read(lc3_frame_size), bitdepth=bitdepth)
/btstack/chipset/cc256x/
H A Dconvert_bts_init_scripts.py47 low = f.read(1)
50 high = f.read(1)
143 header = fin.read(32)
152 action_data = bytearray(fin.read(action_size))
/btstack/port/mtk/docs/scripts/
H A Dprocess_scan.py85 (length, time_sec, time_usec, packet_type) = struct.unpack('>IIIB',f.read(13))
88 packet = bytearray(f.read(length - 9))
/btstack/test/flash_tlv/
H A Dtlv_test.cpp61 hal_flash_bank_impl->read(&hal_flash_bank_context, bank, offsets[i], &buffer, 1); in TEST()
81 hal_flash_bank_impl->read(&hal_flash_bank_context, bank, offsets[i], &buffer, 1); in TEST()
101 hal_flash_bank_impl->read(&hal_flash_bank_context, 0, offset, &buffer, 1); in TEST()
104 hal_flash_bank_impl->read(&hal_flash_bank_context, 0, offset, &buffer, 1); in TEST()
/btstack/test/security_manager_sc/
H A Dsm_test.gatt3 // Counter Characteristic, with read and notify
/btstack/example/
H A Datt_delayed_response.gatt9 // Some Characteristic, with read and write
H A Dsm_pairing_peripheral.gatt9 // Dummy Service, Characteristic, with read and notify + authentication
H A Dsm_pairing_central.gatt9 // Dummy Service, Characteristic, with read and notify + authentication
H A Dspp_and_gatt_counter.gatt9 // Counter Characteristic, with read, write, write_without_response and notify
H A Dgatt_counter.gatt12 // Counter Characteristic, with read, write and notify
/btstack/test/att_db/
H A Datt_db_util_test.gatt9 // Counter Characteristic, with read and notify
/btstack/platform/embedded/
H A Dhal_flash_bank.h75 void (*read)(void * context, int bank, uint32_t offset, uint8_t * buffer, uint32_t size); member
/btstack/3rd-party/lwip/core/src/include/lwip/apps/
H A Dtftp_common.h77 int (*read)(void* handle, void* buf, int bytes); member
/btstack/chipset/em9301/
H A Dconvert_emp.py57 firm = fin.read()
/btstack/chipset/atwilc3000/
H A Dconvert_firmware_bin.py51 firm = fin.read()

1234