HomeSort by: relevance | last modified time | path
    Searched defs:memo (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/netbt/
hci_misc.c 61 struct hci_memo *memo; local in function:hci_route_lookup
88 memo = hci_memo_find(unit, dest);
89 if (memo)
112 * find unit memo from bdaddr
117 struct hci_memo *memo, *m0; local in function:hci_memo_find
123 while ((memo = m0) != NULL) {
124 m0 = LIST_NEXT(memo, next);
126 if (now.tv_sec > memo->time.tv_sec + hci_memo_expiry) {
127 DPRINTF("memo %p too old (expiring)\n", memo);
149 struct hci_memo *memo; local in function:hci_memo_new
    [all...]
hci_unit.c 215 struct hci_memo *memo; local in function:hci_disable
250 while ((memo = LIST_FIRST(&unit->hci_memos)) != NULL)
251 hci_memo_free(memo);
hci_event.c 460 struct hci_memo *memo; local in function:hci_event_inquiry_result
482 memo = hci_memo_new(unit, &ir.bdaddr);
483 if (memo != NULL) {
484 memo->page_scan_rep_mode = ir.page_scan_rep_mode;
485 memo->page_scan_mode = ir.page_scan_mode;
486 memo->clock_offset = ir.clock_offset;
501 struct hci_memo *memo; local in function:hci_event_rssi_result
523 memo = hci_memo_new(unit, &rr.bdaddr);
524 if (memo != NULL) {
525 memo->page_scan_rep_mode = rr.page_scan_rep_mode
541 struct hci_memo *memo; local in function:hci_event_extended_result
    [all...]
hci_link.c 71 struct hci_memo *memo; local in function:hci_acl_open
94 memo = hci_memo_find(unit, bdaddr);
95 if (memo != NULL) {
96 cp.page_scan_rep_mode = memo->page_scan_rep_mode;
97 cp.page_scan_mode = memo->page_scan_mode;
98 cp.clock_offset = memo->clock_offset;
1006 * If we made a note of clock offset, keep it in a memo
1010 struct hci_memo *memo; local in function:hci_link_free
1012 memo = hci_memo_new(link->hl_unit, &link->hl_bdaddr);
1013 if (memo != NULL
    [all...]

Completed in 18 milliseconds