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

  /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:__anon21984
  /external/iputils/Modules/
pg3.c 241 struct sk_buff *skb; local
247 skb = alloc_skb(pkt_size+64+16, GFP_ATOMIC);
248 if (!skb) {
253 skb_reserve(skb, 16);
256 eth = (__u8 *) skb_push(skb, 14);
257 iph = (struct iphdr*)skb_put(skb, sizeof( struct iphdr));
258 udph = (struct udphdr*)skb_put(skb, sizeof( struct udphdr));
284 skb->protocol = __constant_htons(ETH_P_IP);
285 skb->mac.raw = ((u8*)iph) - 14;
286 skb->dev = odev
345 struct sk_buff *skb; local
    [all...]
  /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 109 milliseconds