Lines Matching refs:handle
31 #define APPLY_CONTINUATION_FLAG(handle) (((handle) & 0xCFFF) | 0x1000) argument
32 #define APPLY_START_FLAG(handle) (((handle) & 0xCFFF) | 0x2000) argument
34 #define GET_BOUNDARY_FLAG(handle) (((handle) >> 12) & 0x0003) argument
142 uint16_t handle; in reassemble_and_dispatch() local
146 STREAM_TO_UINT16(handle, stream); in reassemble_and_dispatch()
152 uint8_t boundary_flag = GET_BOUNDARY_FLAG(handle); in reassemble_and_dispatch()
153 handle = handle & HANDLE_MASK; in reassemble_and_dispatch()
155 BT_HDR *partial_packet = (BT_HDR *)hash_map_get(partial_packets, (void *)(uintptr_t)handle); in reassemble_and_dispatch()
160 hash_map_erase(partial_packets, (void *)(uintptr_t)handle); in reassemble_and_dispatch()
191 hash_map_set(partial_packets, (void *)(uintptr_t)handle, partial_packet); in reassemble_and_dispatch()
221 hash_map_erase(partial_packets, (void *)(uintptr_t)handle); in reassemble_and_dispatch()