Lines Matching refs:dhdpub
2911 extern int dhd_op_if_update(dhd_pub_t *dhdpub, int ifidx);
2913 extern struct net_device* dhd_allocate_if(dhd_pub_t *dhdpub, int ifidx, const char *name,
2915 extern int dhd_remove_if(dhd_pub_t *dhdpub, int ifidx, bool need_rtnl_lock);
2948 extern int dhd_bus_suspend(dhd_pub_t *dhdpub);
2949 extern int dhd_bus_resume(dhd_pub_t *dhdpub, int stage);
3580 uint8* dhd_os_prealloc(dhd_pub_t *dhdpub, int section, uint size, bool kmalloc_if_fail);
3581 void dhd_os_prefree(dhd_pub_t *dhdpub, void *addr, uint size);
3584 #define DHD_OS_PREALLOC(dhdpub, section, size) dhd_os_prealloc(dhdpub, section, size, FALSE) argument
3585 #define DHD_OS_PREFREE(dhdpub, addr, size) dhd_os_prefree(dhdpub, addr, size) argument
3587 #define DHD_OS_PREALLOC(dhdpub, section, size) MALLOC(dhdpub->osh, size) argument
3588 #define DHD_OS_PREFREE(dhdpub, addr, size) MFREE(dhdpub->osh, addr, size) argument