Lines Matching refs:pp
1395 WBTCommandList **pp; in WBT_PostCommand() local
1396 for (pp = &work->command; *pp; pp = &(*pp)->next) in WBT_PostCommand()
1399 *pp = list; in WBT_PostCommand()
1583 WBTBlockInfoList **pp; in WBT_RegisterBlockInfo() local
1584 for (pp = &work->list; *pp; pp = &((*pp)->next)) in WBT_RegisterBlockInfo()
1587 if ((*pp)->data_info.id == id) in WBT_RegisterBlockInfo()
1593 *pp = list; in WBT_RegisterBlockInfo()
1624 WBTBlockInfoList **pp; in WBT_UnregisterBlockInfo() local
1625 for (pp = &work->list; *pp; pp = &(*pp)->next) in WBT_UnregisterBlockInfo()
1627 if ((*pp)->data_info.id == id) in WBT_UnregisterBlockInfo()
1629 retval = *pp; in WBT_UnregisterBlockInfo()
1630 *pp = (*pp)->next; in WBT_UnregisterBlockInfo()