Searched refs:send (Results 1 – 3 of 3) sorted by relevance
/hardware/ril/rild/ |
D | radiooptions.c | 98 int ret = send(fd, (const void *)&num_socket_args, sizeof(int), 0); in main() 108 ret = send(fd, &len, sizeof(int), 0); in main() 114 ret = send(fd, argv[1 + i], sizeof(char) * len, 0); in main()
|
/hardware/broadcom/wlan/bcm4329/src/include/ |
D | linux_osl.h | 234 #define PKTGET(osh, len, send) osl_pktget((osh), (len)) argument 235 #define PKTFREE(osh, skb, send) osl_pktfree((osh), (skb), (send)) argument 237 #define PKTGET_STATIC(osh, len, send) osl_pktget_static((osh), (len)) argument 238 #define PKTFREE_STATIC(osh, skb, send) osl_pktfree_static((osh), (skb), (send)) argument 261 extern void osl_pktfree(osl_t *osh, void *skb, bool send); 263 extern void osl_pktfree_static(osl_t *osh, void *skb, bool send);
|
/hardware/broadcom/wlan/bcm4329/src/shared/ |
D | linux_osl.c | 260 osl_pktfree(osl_t *osh, void *p, bool send) in osl_pktfree() argument 266 if (send && osh->pub.tx_fn) in osl_pktfree() 354 osl_pktfree_static(osl_t *osh, void *p, bool send) in osl_pktfree_static() argument 370 return osl_pktfree(osh, p, send); in osl_pktfree_static()
|