Lines Matching refs:p
61 WXCProtocolImpl *p = impl_list; in WXC_InstallProtocolImpl() local
62 if (!p) in WXC_InstallProtocolImpl()
69 for (;; p = p->next) in WXC_InstallProtocolImpl()
71 if (p == impl) in WXC_InstallProtocolImpl()
75 else if (!p->next) in WXC_InstallProtocolImpl()
77 p->next = impl; in WXC_InstallProtocolImpl()
96 WXCProtocolImpl *p = impl_list; in WXC_FindProtocolImpl() local
97 for (; p; p = p->next) in WXC_FindProtocolImpl()
99 if (STD_CompareString(name, p->name) == 0) in WXC_FindProtocolImpl()
104 return p; in WXC_FindProtocolImpl()
239 WXCProtocolRegistry *p = &protocol->data_array[i]; in WXC_BeaconRecvHook() local
241 if (p->ggid == ggid) in WXC_BeaconRecvHook()
243 found = p; in WXC_BeaconRecvHook()
247 else if (WXC_IsCommonGgid(ggid) && WXC_IsCommonGgid(p->ggid)) in WXC_BeaconRecvHook()
251 const BOOL is_current_any = (p->ggid == WXC_GGID_COMMON_ANY); in WXC_BeaconRecvHook()
256 ggid = p->ggid; in WXC_BeaconRecvHook()
257 found = p; in WXC_BeaconRecvHook()
265 found = p; in WXC_BeaconRecvHook()