HomeSort by relevance Sort by last modified time
    Searched refs:cb (Results 76 - 100 of 766) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/qemu/
dma.h 37 BlockDriverCompletionFunc *cb, void *opaque);
40 BlockDriverCompletionFunc *cb, void *opaque);
  /external/wpa_supplicant_8/src/wps/
http_client.h 31 void (*cb)(void *ctx,
37 void (*cb)(void *ctx,
  /frameworks/base/native/include/android/
storage_manager.h 104 AStorageManager_obbCallbackFunc cb, void* data);
110 AStorageManager_obbCallbackFunc cb, void* data);
  /prebuilt/ndk/android-ndk-r5/platforms/android-9/arch-arm/usr/include/android/
storage_manager.h 104 AStorageManager_obbCallbackFunc cb, void* data);
110 AStorageManager_obbCallbackFunc cb, void* data);
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-arm/usr/include/android/
storage_manager.h 104 AStorageManager_obbCallbackFunc cb, void* data);
110 AStorageManager_obbCallbackFunc cb, void* data);
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/android/
storage_manager.h 104 AStorageManager_obbCallbackFunc cb, void* data);
110 AStorageManager_obbCallbackFunc cb, void* data);
  /prebuilt/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/include/android/
storage_manager.h 104 AStorageManager_obbCallbackFunc cb, void* data);
110 AStorageManager_obbCallbackFunc cb, void* data);
  /prebuilt/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/android/
storage_manager.h 104 AStorageManager_obbCallbackFunc cb, void* data);
110 AStorageManager_obbCallbackFunc cb, void* data);
  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/android/
storage_manager.h 104 AStorageManager_obbCallbackFunc cb, void* data);
110 AStorageManager_obbCallbackFunc cb, void* data);
  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/android/
storage_manager.h 104 AStorageManager_obbCallbackFunc cb, void* data);
110 AStorageManager_obbCallbackFunc cb, void* data);
  /external/iptables/extensions/
libxt_CONNMARK.c 137 static void CONNMARK_parse(struct xt_option_call *cb)
139 struct xt_connmark_target_info *markinfo = cb->data;
141 xtables_option_parse(cb);
142 switch (cb->entry->id) {
145 markinfo->mark = cb->val.mark;
146 markinfo->mask = cb->val.mask;
155 markinfo->mask = cb->val.u32;
160 static void connmark_tg_parse(struct xt_option_call *cb)
162 struct xt_connmark_tginfo1 *info = cb->data;
164 xtables_option_parse(cb);
    [all...]
libipt_CLUSTERIP.c 73 static void CLUSTERIP_parse(struct xt_option_call *cb)
75 struct ipt_clusterip_tgt_info *cipinfo = cb->data;
77 xtables_option_parse(cb);
78 switch (cb->entry->id) {
83 if (strcmp(cb->arg, "sourceip") == 0)
85 else if (strcmp(cb->arg, "sourceip-sourceport") == 0)
87 else if (strcmp(cb->arg, "sourceip-sourceport-destport") == 0)
91 cb->arg);
103 static void CLUSTERIP_check(struct xt_fcheck_call *cb)
105 if (cb->xflags == 0
    [all...]
libxt_TOS.c 94 static void tos_tg_parse_v0(struct xt_option_call *cb)
96 struct ipt_tos_target_info *info = cb->data;
98 xtables_option_parse(cb);
99 if (cb->val.tos_mask != 0xFF)
103 info->tos = cb->val.tos_value;
106 static void tos_tg_parse(struct xt_option_call *cb)
108 struct xt_tos_target_info *info = cb->data;
110 xtables_option_parse(cb);
111 switch (cb->entry->id) {
113 info->tos_value = cb->val.tos_value
    [all...]
libxt_multiport.c 164 static void __multiport_parse(struct xt_option_call *cb, uint16_t pnum,
168 struct xt_multiport *multiinfo = cb->data;
170 xtables_option_parse(cb);
171 switch (cb->entry->id) {
174 multiinfo->count = parse_multi_ports(cb->arg,
180 multiinfo->count = parse_multi_ports(cb->arg,
186 multiinfo->count = parse_multi_ports(cb->arg,
191 if (cb->invert)
196 static void multiport_parse(struct xt_option_call *cb)
198 const struct ipt_entry *entry = cb->xt_entry
    [all...]
libxt_iprange.c 96 static void iprange_parse(struct xt_option_call *cb)
98 struct ipt_iprange_info *info = cb->data;
101 xtables_option_parse(cb);
102 switch (cb->entry->id) {
105 if (cb->invert)
107 iprange_parse_range(cb->arg, range, NFPROTO_IPV4, "--src-range");
113 if (cb->invert)
115 iprange_parse_range(cb->arg, range, NFPROTO_IPV4, "--dst-range");
122 static void iprange_mt_parse(struct xt_option_call *cb, uint8_t nfproto)
124 struct xt_iprange_mtinfo *info = cb->data
    [all...]
libxt_owner.c 136 static void owner_mt_parse_v0(struct xt_option_call *cb)
138 struct ipt_owner_info *info = cb->data;
143 xtables_option_parse(cb);
144 switch (cb->entry->id) {
146 if ((pwd = getpwnam(cb->arg)) != NULL)
148 else if (!xtables_strtoui(cb->arg, NULL, &id, 0, UINT32_MAX - 1))
149 xtables_param_act(XTF_BAD_VALUE, "owner", "--uid-owner", cb->arg);
150 if (cb->invert)
156 if ((grp = getgrnam(cb->arg)) != NULL)
158 else if (!xtables_strtoui(cb->arg, NULL, &id, 0, UINT32_MAX - 1)
    [all...]
libxt_cpu.c 23 static void cpu_parse(struct xt_option_call *cb)
25 struct xt_cpu_info *cpuinfo = cb->data;
27 xtables_option_parse(cb);
28 if (cb->invert)
libxt_helper.c 23 static void helper_parse(struct xt_option_call *cb)
25 struct xt_helper_info *info = cb->data;
27 xtables_option_parse(cb);
28 if (cb->invert)
libxt_mac.c 31 static void mac_parse(struct xt_option_call *cb)
33 struct xt_mac_info *macinfo = cb->data;
35 xtables_option_parse(cb);
36 if (cb->invert)
libxt_socket.c 26 static void socket_mt_parse(struct xt_option_call *cb)
28 struct xt_socket_mtinfo1 *info = cb->data;
30 xtables_option_parse(cb);
31 switch (cb->entry->id) {
  /external/chromium/net/disk_cache/
stress_cache.cc 102 TestCompletionCallback cb;
107 cache_thread.message_loop_proxy(), NULL, &cache, &cb);
109 if (cb.GetResult(rv) != net::OK) {
145 rv = cache->OpenEntry(keys[key], &entries[slot], &cb);
146 if (cb.GetResult(rv) != net::OK) {
147 rv = cache->CreateEntry(keys[key], &entries[slot], &cb);
148 CHECK_EQ(net::OK, cb.GetResult(rv));
154 rv = entries[slot]->WriteData(0, 0, buffer, size, &cb, truncate);
155 CHECK_EQ(size, cb.GetResult(rv));
159 rv = cache->DoomEntry(keys[key], &cb);
    [all...]
  /external/openssl/crypto/bn/
bn_prime.c 137 int BN_GENCB_call(BN_GENCB *cb, int a, int b)
140 if(!cb) return 1;
141 switch(cb->ver)
145 if(!cb->cb.cb_1)
147 cb->cb.cb_1(a, b, cb->arg);
151 return cb->cb.cb_2(a, b, cb)
    [all...]
  /external/clang/test/CodeGenCXX/
2007-09-10-RecursiveTypeResolution.cpp 74 RTRT::registerTerminationCallback (CallbackBase_1Data < MantaInterface * >*cb)
76 return cb;
84 callback_t *cb = static_cast < callback_t * >(callback); local
85 find (parallelPreRenderCallbacks.end (), cb);
  /external/clang/test/SemaCXX/
illegal-member-initialization.cpp 16 // expected-error {{constructor for 'X' must explicitly initialize the const member 'cb'}}
20 const B cb; // expected-note{{declared here}} member in struct:X
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_image.h 52 u8 *cb; member in struct:__anon15346

Completed in 737 milliseconds

1 2 34 5 6 7 8 91011>>