HomeSort by relevance Sort by last modified time
    Searched defs:skb (Results 1 - 9 of 9) sorted by null

  /hardware/ti/wlan/wl1271/platforms/os/linux/inc/
RxBuf_linux.h 47 struct sk_buff *skb; member in struct:_rx_head_
  /hardware/ti/wlan/wl1271/platforms/os/linux/src/
RxBuf.c 52 struct sk_buff *skb; local
56 skb = alloc_skb(alloc_len, flags);
57 if (!skb)
61 rx_head = (rx_head_t *)skb->head;
62 rx_head->skb = skb;
63 skb_reserve(skb, RX_HEAD_LEN_ALIGNED + WSPI_PAD_BYTES);
65 printk("-->> RxBufAlloc(len=%d) skb=0x%x skb->data=0x%x skb->head=0x%x skb->len=%d\n"
78 struct sk_buff *skb = rx_head->skb; local
    [all...]
ipc_k.c 68 struct sk_buff *skb; local
91 skb = dev_alloc_skb(realSize);
92 if (!skb) {
93 printk(KERN_ERR "Failed to allocate new skb with size=%u.\n",realSize);
98 nlh = NLMSG_PUT(skb, 0, 0, NLMSG_DONE, realSize - sizeof(*nlh));
106 NETLINK_CB(skb).pid = 0; /* from kernel */
108 NETLINK_CB(skb).dst_group = RTMGRP_LINK;
111 res = netlink_unicast(drv->wl_sock, skb, (( IPC_EVENT_PARAMS *) pEvData) ->uProcessID, MSG_DONTWAIT);
osapi.c 437 struct sk_buff *skb = rx_head->skb; local
442 if ((TI_UINT32)pPacket - (TI_UINT32)skb->data != 2)
444 printk("os_receivePacket() address error skb=0x%x skb->data=0x%x pPacket=0x%x !!!\n",(int)skb, (int)skb->data, (int)pPacket);
449 if ((TI_UINT32)skb->data != (TI_UINT32)pPacket)
451 printk("os_receivePacket() address error skb=0x%x skb->data=0x%x pPacket=0x%x !!!\n",(int)skb, (int)skb->data, (int)pPacket)
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SkbPool.java 68 SoftKeyboard skb = mSoftKeyboards.elementAt(i); local
69 if (skb.getCacheId() == skbCacheId && skb.getSkbXmlId() == skbXmlId) {
70 skb.setSkbCoreSize(skbWidth, skbHeight);
71 skb.setNewlyLoadedFlag(false);
72 return skb;
77 SoftKeyboard skb = xkbl.loadKeyboard(skbXmlId, skbWidth, skbHeight); local
78 if (skb != null) {
79 if (skb.getCacheFlag()) {
80 skb.setCacheId(skbCacheId)
    [all...]
SkbContainer.java 218 SoftKeyboard skb = mMajorView.getSoftKeyboard();
219 if (null != skb) {
220 return skb.getStickyFlag();
230 SoftKeyboard skb = mMajorView.getSoftKeyboard(); local
231 if (null == skb) return;
235 skb.disableToggleState(state, false);
236 skb.enableToggleStates(mInputModeSwitcher.getToggleStates());
238 skb.enableToggleState(state, false);
255 SoftKeyboard skb = mMajorView.getSoftKeyboard();
256 if (null == skb) return
343 SoftKeyboard skb = skbPool.getSoftKeyboard(popupResId, popupResId, local
    [all...]
  /external/kernel-headers/original/linux/sunrpc/
xdr.h 150 struct sk_buff *skb; member in struct:__anon8690
  /external/kernel-headers/original/linux/
netlink.h 156 static inline struct nlmsghdr *nlmsg_hdr(const struct sk_buff *skb)
158 return (struct nlmsghdr *)skb->data;
162 struct ucred creds; /* Skb credentials */
167 #define NETLINK_CB(skb) (*(struct netlink_skb_parms*)&((skb)->cb))
168 #define NETLINK_CREDS(skb) (&NETLINK_CB((skb)).creds)
176 void (*input)(struct sk_buff *skb),
186 extern int netlink_unicast(struct sock *ssk, struct sk_buff *skb, __u32 pid, int nonblock);
187 extern int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, __u32 pid
220 struct sk_buff *skb; member in struct:netlink_callback
    [all...]
skbuff.h 51 * skb->csum is undefined.
54 * skb->csum is undefined.
60 * the packet as seen by netif_rx in skb->csum.
62 * is able to produce some skb->csum, it MUST use HW,
67 * NONE: skb is checksummed by protocol or csum is not required.
70 * from skb->h.raw to the end and to record the checksum
71 * at skb->h.raw+skb->csum.
120 /* To allow 64K frame to be packed as single skb without frag_list */
132 * the end of the header data, ie. at skb->end
777 struct sk_buff *skb = skb_peek_tail(list); local
1084 struct sk_buff *skb; local
1104 struct sk_buff *skb = alloc_skb(length + NET_SKB_PAD, gfp_mask); local
    [all...]

Completed in 498 milliseconds