Searched defs:cb (Results 76 - 100 of 674) sorted by relevance

1234567891011>>

/external/elfutils/0.153/libdwfl/
H A Ddwfl_build_id_find_elf.c86 const Dwfl_Callbacks *const cb = mod->dwfl->callbacks; local
88 char *path = strdup ((cb->debuginfo_path ? *cb->debuginfo_path : NULL)
91 char *path = strdupa ((cb->debuginfo_path ? *cb->debuginfo_path : NULL)
/external/glide/library/src/main/java/com/bumptech/glide/request/target/
H A DPreloadTarget.java29 public void getSize(SizeReadyCallback cb) { argument
30 cb.onSizeReady(width, height);
H A DTarget.java38 * @param cb The callback that must be called when the size of the target has been determined
40 public void getSize(SizeReadyCallback cb); argument
/external/iptables/extensions/
H A Dlibip6t_NETMAP.c37 static void NETMAP_parse(struct xt_option_call *cb) argument
39 struct nf_nat_range *range = cb->data;
42 xtables_option_parse(cb);
45 range->min_addr.ip6[i] = cb->val.haddr.ip6[i] &
46 cb->val.hmask.ip6[i];
48 ~cb->val.hmask.ip6[i];
H A Dlibipt_ECN.c49 static void ECN_parse(struct xt_option_call *cb) argument
51 struct ipt_ECN_info *einfo = cb->data;
53 xtables_option_parse(cb);
54 switch (cb->entry->id) {
62 einfo->proto.tcp.cwr = cb->val.u8;
66 einfo->proto.tcp.ece = cb->val.u8;
70 einfo->ip_ect = cb->val.u8;
75 static void ECN_check(struct xt_fcheck_call *cb) argument
77 if (cb->xflags == 0)
H A Dlibipt_ULOG.c56 static void ULOG_parse(struct xt_option_call *cb) argument
58 struct ipt_ulog_info *loginfo = cb->data;
60 xtables_option_parse(cb);
61 switch (cb->entry->id) {
63 loginfo->nl_group = 1 << (cb->val.u8 - 1);
66 if (strchr(cb->arg, '\n') != NULL)
71 loginfo->copy_range = cb->val.u64;
74 loginfo->qthreshold = cb->val.u64;
H A Dlibipt_ah.c24 static void ah_parse(struct xt_option_call *cb) argument
26 struct ipt_ah *ahinfo = cb->data;
28 xtables_option_parse(cb);
29 if (cb->nvals == 1)
31 if (cb->invert)
H A Dlibxt_CLASSIFY.c39 static void CLASSIFY_parse(struct xt_option_call *cb) argument
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);
H A Dlibxt_CONNSECMARK.c36 static void CONNSECMARK_parse(struct xt_option_call *cb) argument
38 struct xt_connsecmark_target_info *info = cb->data;
40 xtables_option_parse(cb);
41 switch (cb->entry->id) {
51 static void CONNSECMARK_check(struct xt_fcheck_call *cb) argument
53 if (cb->xflags == 0)
H A Dlibxt_DSCP.c53 static void DSCP_parse(struct xt_option_call *cb) argument
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) argument
67 if (cb->xflags == 0)
H A Dlibxt_LED.c49 static void LED_parse(struct xt_option_call *cb) argument
51 struct xt_led_info *led = cb->data;
53 xtables_option_parse(cb);
54 switch (cb->entry->id) {
57 strcat(led->id, cb->arg);
60 if (strncasecmp(cb->arg, "inf", 3) == 0)
62 else if (!xtables_strtoui(cb->arg, NULL, &led->delay, 0, UINT32_MAX))
H A Dlibxt_dscp.c53 static void dscp_parse(struct xt_option_call *cb) argument
55 struct xt_dscp_info *dinfo = cb->data;
57 xtables_option_parse(cb);
58 switch (cb->entry->id) {
60 if (cb->invert)
64 dinfo->dscp = class_to_dscp(cb->arg);
65 if (cb->invert)
71 static void dscp_check(struct xt_fcheck_call *cb) argument
73 if (cb->xflags == 0)
H A Dlibxt_esp.c24 static void esp_parse(struct xt_option_call *cb) argument
26 struct xt_esp *espinfo = cb->data;
28 xtables_option_parse(cb);
29 if (cb->nvals == 1)
31 if (cb->invert)
H A Dlibxt_mac.c31 static void mac_parse(struct xt_option_call *cb) argument
33 struct xt_mac_info *macinfo = cb->data;
35 xtables_option_parse(cb);
36 if (cb->invert)
H A Dlibxt_physdev.c40 static void physdev_parse(struct xt_option_call *cb) argument
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
78 physdev_check(struct xt_fcheck_call *cb) argument
[all...]
H A Dlibxt_rpfilter.c31 static void rpfilter_parse(struct xt_option_call *cb) argument
33 struct xt_rpfilter_info *rpfinfo = cb->data;
35 xtables_option_parse(cb);
36 switch (cb->entry->id) {
/external/libnl/src/
H A Dnl-route-get.c33 static int cb(struct nl_msg *msg, void *arg) function
76 nl_socket_modify_cb(sock, NL_CB_VALID, NL_CB_CUSTOM, cb, NULL);
/external/libselinux/src/
H A Dcallbacks.c75 selinux_set_callback(int type, union selinux_callback cb) argument
79 selinux_log = cb.func_log;
82 selinux_audit = cb.func_audit;
85 selinux_validate = cb.func_validate;
88 selinux_netlink_setenforce = cb.func_setenforce;
91 selinux_netlink_policyload = cb.func_policyload;
100 union selinux_callback cb; local
104 cb.func_log = selinux_log;
107 cb.func_audit = selinux_audit;
110 cb
[all...]
/external/lldb/test/lang/cpp/overloaded-functions/
H A Dmain.cpp15 int cb; member in struct:C
/external/openssl/crypto/bn/
H A Dbn_depr.c72 BN_GENCB cb; local
76 BN_GENCB_set_old(&cb, callback, cb_arg);
84 if(!BN_generate_prime_ex(rnd, bits, safe, add, rem, &cb))
97 BN_GENCB cb; local
98 BN_GENCB_set_old(&cb, callback, cb_arg);
99 return BN_is_prime_ex(a, checks, ctx_passed, &cb);
107 BN_GENCB cb; local
108 BN_GENCB_set_old(&cb, callback, cb_arg);
110 do_trial_division, &cb);
/external/qemu/distrib/libselinux/src/
H A Dcallbacks.c75 selinux_set_callback(int type, union selinux_callback cb) argument
79 selinux_log = cb.func_log;
82 selinux_audit = cb.func_audit;
85 selinux_validate = cb.func_validate;
88 selinux_netlink_setenforce = cb.func_setenforce;
91 selinux_netlink_policyload = cb.func_policyload;
100 union selinux_callback cb; local
104 cb.func_log = selinux_log;
107 cb.func_audit = selinux_audit;
110 cb
[all...]
/external/bluetooth/bluedroid/osi/test/
H A Dalarm_test.cpp52 static void cb(UNUSED_ATTR void *data) { function
57 static bool set_wake_alarm(uint64_t delay_millis, bool, alarm_cb cb, void *data) { argument
58 saved_callback = cb;
112 alarm_set(alarm, 10, cb, NULL);
124 alarm_set(alarm, 10, cb, NULL);
133 alarm_set(alarm, 10, cb, NULL);
148 alarm_set(alarm, TIMER_INTERVAL_FOR_WAKELOCK_IN_MS, cb, NULL);
167 alarm_set(alarm[0], 10, cb, NULL);
168 alarm_set(alarm[1], 20, cb, NULL);
193 alarm_set(alarm[0], 10, cb, NUL
[all...]
/external/chromium_org/cc/test/
H A Dtest_context_provider.cc155 const LostContextCallback& cb) {
157 DCHECK(lost_context_callback_.is_null() || cb.is_null());
158 lost_context_callback_ = cb;
162 const MemoryPolicyChangedCallback& cb) {
164 DCHECK(memory_policy_changed_callback_.is_null() || cb.is_null());
165 memory_policy_changed_callback_ = cb;
154 SetLostContextCallback( const LostContextCallback& cb) argument
161 SetMemoryPolicyChangedCallback( const MemoryPolicyChangedCallback& cb) argument
/external/chromium_org/components/nacl/browser/
H A Dpnacl_host_unittest.cc424 net::TestCompletionCallback cb; local
427 base::Time(), base::Time(), base::Bind(cb.callback(), 0));
431 EXPECT_EQ(0, cb.GetResult(net::ERR_IO_PENDING));
/external/chromium_org/components/nacl/renderer/
H A Dmanifest_downloader.cc20 Callback cb)
23 cb_(cb),
26 CHECK(!cb.is_null());
17 ManifestDownloader( scoped_ptr<blink::WebURLLoader> url_loader, bool is_installed, Callback cb) argument

Completed in 2064 milliseconds

1234567891011>>