HomeSort by relevance Sort by last modified time
    Searched refs:cb (Results 401 - 425 of 2436) sorted by null

<<11121314151617181920>>

  /external/iptables/extensions/
libip6t_ipv6header.c 159 static void ipv6header_parse(struct xt_option_call *cb)
161 struct ip6t_ipv6header_info *info = cb->data;
163 xtables_option_parse(cb);
164 switch (cb->entry->id) {
166 if (!(info->matchflags = parse_header(cb->arg)))
168 if (cb->invert)
libipt_MASQUERADE.c 74 static void MASQUERADE_parse(struct xt_option_call *cb)
76 const struct ipt_entry *entry = cb->xt_entry;
78 struct nf_nat_ipv4_multi_range_compat *mr = cb->data;
89 xtables_option_parse(cb);
90 switch (cb->entry->id) {
95 parse_ports(cb->arg, mr);
libip6t_rt.c 109 static void rt_parse(struct xt_option_call *cb)
111 struct ip6t_rt *rtinfo = cb->data;
113 xtables_option_parse(cb);
114 switch (cb->entry->id) {
116 if (cb->invert)
121 if (cb->nvals == 1)
123 if (cb->invert)
128 if (cb->invert)
133 if (!(cb->xflags & F_RT_TYPE) || rtinfo->rt_type != 0 ||
140 if (!(cb->xflags & F_RT_TYPE) || rtinfo->rt_type != 0 |
    [all...]
libipt_DNAT.c 151 static void DNAT_parse(struct xt_option_call *cb)
153 const struct ipt_entry *entry = cb->xt_entry;
154 struct ipt_natinfo *info = (void *)(*cb->target);
166 xtables_option_parse(cb);
167 switch (cb->entry->id) {
169 if (cb->xflags & F_X_TO_DEST) {
176 *cb->target = parse_to(cb->arg, portok, info);
177 cb->xflags |= F_X_TO_DEST;
185 static void DNAT_fcheck(struct xt_fcheck_call *cb)
    [all...]
  /external/iw/
hwsim.c 55 static int handle_hwsim_getps(struct nl80211_state *state, struct nl_cb *cb,
69 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM,
77 static int handle_hwsim_setps(struct nl80211_state *state, struct nl_cb *cb,
101 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM,
109 static int handle_hwsim_stop_queues(struct nl80211_state *state, struct nl_cb *cb,
131 static int handle_hwsim_wake_queues(struct nl80211_state *state, struct nl_cb *cb,
mpath.c 94 struct nl_cb *cb,
116 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, print_mpath_handler, NULL);
130 struct nl_cb *cb,
166 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, print_mpath_handler, NULL);
179 struct nl_cb *cb,
186 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM, print_mpath_handler, NULL);
  /external/oj-libjdwp/src/share/back/
classTrack.c 252 jvmtiEventCallbacks cb; local
253 memset(&cb, 0, sizeof(cb));
254 cb.ObjectFree = cbTrackingObjectFree;
255 error = JVMTI_FUNC_PTR(trackingEnv,SetEventCallbacks)(trackingEnv, &cb, sizeof(cb));
  /frameworks/base/core/tests/coretests/BinderProxyCountingTestApp/src/com/android/frameworks/coretests/binderproxycountingtestapp/
BpcTestAppCmdService.java 89 ITestRemoteCallback cb = new ITestRemoteCallback.Stub() {};
91 mTrcList.add(cb);
94 mBpcService.registerCallback(cb);
106 ITestRemoteCallback cb;
108 cb = mTrcList.remove(0);
111 mBpcService.unregisterCallback(cb);
  /libcore/ojluni/src/main/java/java/util/zip/
ZipCoder.java 62 CharBuffer cb = CharBuffer.wrap(ca); local
63 CoderResult cr = cd.decode(bb, cb, true);
66 cr = cd.flush(cb);
69 return new String(ca, 0, cb.position());
92 CharBuffer cb = CharBuffer.wrap(ca); local
93 CoderResult cr = ce.encode(cb, bb, true);
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
SupplicantStaNetworkHalTest.java 248 public void answer(ISupplicantStaNetwork.getSsidCallback cb) throws RemoteException {
249 cb.onValues(mStatusFailure, mSupplicantVariables.ssid);
707 public void answer(ISupplicantStaNetwork.getWpsNfcConfigurationTokenCallback cb)
709 cb.onValues(mStatusSuccess, token);
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form11n.java 83 CstLiteralBits cb = (CstLiteralBits) cst; local
85 return cb.fitsInInt() && signedFitsInNibble(cb.getIntBits());
Form21s.java 82 CstLiteralBits cb = (CstLiteralBits) cst; local
84 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits());
Form22b.java 84 CstLiteralBits cb = (CstLiteralBits) cst; local
86 return cb.fitsInInt() && signedFitsInByte(cb.getIntBits());
Form22s.java 84 CstLiteralBits cb = (CstLiteralBits) cst; local
86 return cb.fitsInInt() && signedFitsInShort(cb.getIntBits());
  /device/google/wahoo/wifi_offload/
Offload.h 32 void setCallback(android::wp<CallbackType> cb) {
33 cb_ = cb;
64 Return<void> setEventCallback(const sp<IOffloadCallback>& cb) override;
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
Engine.java 44 private final ResourceCallback cb; field in class:Engine.LoadStatus
46 public LoadStatus(ResourceCallback cb, EngineJob engineJob) {
47 this.cb = cb;
52 engineJob.removeCallback(cb);
108 * <li>Check the current set of in progress loads and add the cb to the in progress load if present</li>
134 * @param cb The callback that will be called when the load completes.
142 Priority priority, boolean isMemoryCacheable, DiskCacheStrategy diskCacheStrategy, ResourceCallback cb) {
155 cb.onResourceReady(cached);
167 cb.onResourceReady(active)
    [all...]
  /external/libchrome/base/
callback.h 88 Callback cb = std::move(*this); local
90 reinterpret_cast<PolymorphicInvoke>(cb.polymorphic_invoke());
91 return f(cb.bind_state_.get(), std::forward<Args>(args)...);
  /external/libevent/
iocp-internal.h 53 iocp_callback cb; member in struct:event_overlapped
99 iocp_callback cb; member in struct:event_overlapped
106 @param cb The callback that should be invoked once the IO operation has
109 void event_overlapped_init_(struct event_overlapped *, iocp_callback cb);
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_state_shader.c 341 const struct pipe_constant_buffer *cb)
344 struct pipe_resource *constants = cb ? cb->buffer : NULL;
350 if (cb && cb->user_buffer) {
352 (void *) cb->user_buffer,
353 cb->buffer_size,
357 size = cb ? cb->buffer_size : 0;
360 data = (const char *) data + cb->buffer_offset
    [all...]
  /external/webrtc/webrtc/modules/desktop_capture/win/
screen_capture_utils.cc 24 device.cb = sizeof(device);
49 device.cb = sizeof(device);
66 device.cb = sizeof(device);
  /external/wpa_supplicant_8/src/ap/
utils.c 19 int (*cb)(void *ctx, const u8 *sa,
36 n->cb = cb;
  /device/google/cuttlefish_common/common/commands/wifi_relay/
nl_client.h 48 void SetDefaultHandler(std::function<void(nl_msg*)> cb);
  /external/aac/libMpegTPDec/src/
tpdec_drm.h 187 * \param cb A pointer to structure holding callback
188 * information Note: A NULL pointer for cb can be used to signal a "Check Config
198 CSTpCallBacks *cb,
  /external/elfutils/tests/
run-zstrptr.sh 51 [cb] '.stab'
87 [cb] '.stab'
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
Target.java 79 * @param cb The callback that must be called when the size of the target has been determined
81 void getSize(SizeReadyCallback cb);

Completed in 6839 milliseconds

<<11121314151617181920>>