HomeSort by relevance Sort by last modified time
    Searched refs:cb (Results 126 - 150 of 1852) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/iptables/extensions/
libxt_DSCP.c 53 static void DSCP_parse(struct xt_option_call *cb)
55 struct xt_DSCP_info *dinfo = cb->data;
57 xtables_option_parse(cb);
58 switch (cb->entry->id) {
60 dinfo->dscp = class_to_dscp(cb->arg);
65 static void DSCP_check(struct xt_fcheck_call *cb)
67 if (cb->xflags == 0)
libxt_physdev.c 40 static void physdev_parse(struct xt_option_call *cb)
42 struct xt_physdev_info *info = cb->data;
44 xtables_option_parse(cb);
45 switch (cb->entry->id) {
47 xtables_parse_interface(cb->arg, info->physindev,
49 if (cb->invert)
54 xtables_parse_interface(cb->arg, info->physoutdev,
56 if (cb->invert)
62 if (cb->invert)
67 if (cb->invert
    [all...]
libxt_statistic.c 50 static void statistic_parse(struct xt_option_call *cb)
52 struct xt_statistic_info *info = cb->data;
54 if (cb->invert)
57 xtables_option_parse(cb);
58 switch (cb->entry->id) {
60 if (strcmp(cb->arg, "random") == 0)
62 else if (strcmp(cb->arg, "nth") == 0)
66 cb->arg);
69 info->u.random.probability = lround(0x80000000 * cb->val.dbl);
77 static void statistic_check(struct xt_fcheck_call *cb)
    [all...]
libxt_CLASSIFY.c 39 static void CLASSIFY_parse(struct xt_option_call *cb)
41 struct xt_classify_target_info *clinfo = cb->data;
43 xtables_option_parse(cb);
44 if (CLASSIFY_string_to_priority(cb->arg, &clinfo->priority))
46 "Bad class value \"%s\"", cb->arg);
libxt_quota.c 44 static void quota_parse(struct xt_option_call *cb)
46 struct xt_quota_info *info = cb->data;
48 xtables_option_parse(cb);
49 if (cb->invert)
51 info->quota = cb->val.u64;
libxt_conntrack.c 337 static void conntrack_parse(struct xt_option_call *cb)
339 struct xt_conntrack_info *sinfo = cb->data;
341 xtables_option_parse(cb);
342 switch (cb->entry->id) {
344 parse_states(cb->arg, sinfo);
345 if (cb->invert)
349 sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.protonum = cb->val.protocol;
350 if (cb->invert)
360 if (cb->invert)
362 sinfo->tuple[IP_CT_DIR_ORIGINAL].src.ip = cb->val.haddr.ip
    [all...]
libxt_tos.c 56 static void tos_mt_parse_v0(struct xt_option_call *cb)
58 struct ipt_tos_info *info = cb->data;
60 xtables_option_parse(cb);
61 if (cb->val.tos_mask != 0xFF)
65 info->tos = cb->val.tos_value;
66 if (cb->invert)
70 static void tos_mt_parse(struct xt_option_call *cb)
72 struct xt_tos_match_info *info = cb->data;
74 xtables_option_parse(cb);
75 info->tos_value = cb->val.tos_value
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_dataflow.h 50 void rc_for_all_reads_chan(struct rc_instruction * inst, rc_read_write_chan_fn cb, void * userdata);
51 void rc_for_all_writes_chan(struct rc_instruction * inst, rc_read_write_chan_fn cb, void * userdata);
55 void rc_for_all_reads_mask(struct rc_instruction * inst, rc_read_write_mask_fn cb, void * userdata);
56 void rc_for_all_writes_mask(struct rc_instruction * inst, rc_read_write_mask_fn cb, void * userdata);
60 void rc_for_all_reads_src(struct rc_instruction * inst, rc_read_src_fn cb,
67 rc_pair_read_arg_fn cb, void * userdata);
71 void rc_remap_registers(struct rc_instruction * inst, rc_remap_register_fn cb, void * userdata);
  /external/compiler-rt/lib/tsan/dd/
dd_rtl.cc 111 Callback cb(thr);
115 ctx->dd->MutexInit(&cb, &h->dd);
116 ctx->dd->MutexBeforeLock(&cb, &h->dd, writelock);
118 ReportDeadlock(thr, ctx->dd->GetReport(&cb));
124 Callback cb(thr);
128 ctx->dd->MutexInit(&cb, &h->dd);
129 ctx->dd->MutexAfterLock(&cb, &h->dd, writelock, trylock);
131 ReportDeadlock(thr, ctx->dd->GetReport(&cb));
137 Callback cb(thr);
140 ctx->dd->MutexBeforeUnlock(&cb, &h->dd, writelock)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
AccessibilityController.java 59 public void addStateChangedCallback(AccessibilityStateChangedCallback cb) {
60 mChangeCallbacks.add(cb);
61 cb.onStateChanged(mAccessibilityEnabled, mTouchExplorationEnabled);
64 public void removeStateChangedCallback(AccessibilityStateChangedCallback cb) {
65 mChangeCallbacks.remove(cb);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_deadlock_detector2.cc 93 void MutexInit(DDCallback *cb, DDMutex *m);
94 void MutexBeforeLock(DDCallback *cb, DDMutex *m, bool wlock);
95 void MutexAfterLock(DDCallback *cb, DDMutex *m, bool wlock,
97 void MutexBeforeUnlock(DDCallback *cb, DDMutex *m, bool wlock);
98 void MutexDestroy(DDCallback *cb, DDMutex *m);
100 DDReport *GetReport(DDCallback *cb);
104 u32 allocateId(DDCallback *cb);
153 void DD::MutexInit(DDCallback *cb, DDMutex *m) {
154 VPrintf(2, "#%llu: DD::MutexInit(%p)\n", cb->lt->ctx, m);
175 u32 DD::allocateId(DDCallback *cb) {
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
gnubby.js 41 * @param {function(number, Array.<llGnubbyDeviceId>)} cb Called back with the
44 usbGnubby.prototype.enumerate = function(cb) {
45 if (!cb) cb = usbGnubby.defaultCallback;
47 cb(-llGnubby.NODEVICE);
51 cb(-llGnubby.NODEVICE);
55 usbGnubby.gnubbies_.enumerate(cb);
67 var cb = opt_cb ? opt_cb : usbGnubby.defaultCallback;
69 cb(-llGnubby.NODEVICE);
93 cb(rc)
    [all...]
usbgnubbyfactory.js 26 * @param {function(number, usbGnubby=)} cb Called with result of opening the
32 function(which, forEnroll, cb, logMsgUrl) {
35 cb(rc, gnubby);
41 * @param {function(number, Array.<llGnubbyDeviceId>)} cb Enumerate callback
43 UsbGnubbyFactory.prototype.enumerate = function(cb) {
44 this.gnubbies_.enumerate(cb);
  /external/chromium_org/ppapi/tests/
test_tcp_socket.cc 71 TestCompletionCallback cb(instance_->pp_instance(), callback_type());
73 cb.WaitForResult(socket.Connect(addr_, cb.GetCallback()));
74 CHECK_CALLBACK_BEHAVIOR(cb);
75 ASSERT_EQ(PP_OK, cb.result());
91 TestCompletionCallback cb(instance_->pp_instance(), callback_type());
96 cb.WaitForResult(socket.Bind(any_port_address, cb.GetCallback()));
97 CHECK_CALLBACK_BEHAVIOR(cb);
98 ASSERT_EQ(PP_OK, cb.result())
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardUpdateMonitor.java 237 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
238 if (cb != null) {
239 cb.onTrustChanged(userId);
241 cb.onTrustInitiatedByUser(userId);
252 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
253 if (cb != null) {
254 cb.onTrustManagedChanged(userId);
262 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
263 if (cb != null) {
264 cb.onFingerprintRecognized(userId)
294 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
304 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
557 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
568 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
582 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
591 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
706 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
718 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
734 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
758 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
778 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
790 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
815 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
829 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
842 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
858 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
874 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
895 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
909 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
924 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
940 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
952 KeyguardUpdateMonitorCallback cb = mCallbacks.get(i).get(); local
    [all...]
  /external/chromium_org/net/quic/test_tools/
delayed_verify_strike_register_client.h 30 ResultCallback* cb) OVERRIDE;
48 cb(in_cb) {
53 ResultCallback* cb; member in struct:net::test::DelayedVerifyStrikeRegisterClient::VerifyArgs
  /external/chromium_org/third_party/openssl/openssl/crypto/dsa/
dsa_depr.c 92 BN_GENCB cb; local
97 BN_GENCB_set_old(&cb, callback, cb_arg);
100 counter_ret, h_ret, &cb))
  /external/chromium_org/third_party/openssl/openssl/crypto/rsa/
rsa_depr.c 74 BN_GENCB cb; local
90 BN_GENCB_set_old(&cb, callback, cb_arg);
92 if(RSA_generate_key_ex(rsa, bits, e, &cb)) {
  /external/libnl/src/
nl-list-sockets.c 28 "wmem CB refcnt\n");
31 unsigned long sk, cb; local
37 &cb, &refcnt);
43 groups, rmem, wmem, cb, refcnt);
  /external/openssl/crypto/dsa/
dsa_depr.c 92 BN_GENCB cb; local
97 BN_GENCB_set_old(&cb, callback, cb_arg);
100 counter_ret, h_ret, &cb))
  /external/openssl/crypto/rsa/
rsa_depr.c 74 BN_GENCB cb; local
90 BN_GENCB_set_old(&cb, callback, cb_arg);
92 if(RSA_generate_key_ex(rsa, bits, e, &cb)) {
  /external/qemu/block/
raw-posix-aio.h 32 BlockDriverCompletionFunc *cb, void *opaque, int type);
35 BlockDriverCompletionFunc *cb, void *opaque);
41 BlockDriverCompletionFunc *cb, void *opaque, int type);
  /external/qemu/include/android/
monitor.h 6 monitor_fake_new(void* opaque, MonitorFakeFunc cb)
10 assert(cb != NULL);
13 mon->fake_func = cb;
  /hardware/ti/omap4-aah/
tm.c 25 char *cf, *cb; local
48 cb = ptr[5];
49 cb[60] = 'a';
  /hardware/ti/omap4xxx/
tm.c 25 char *cf, *cb; local
48 cb = ptr[5];
49 cb[60] = 'a';

Completed in 766 milliseconds

1 2 3 4 56 7 8 91011>>