Searched refs:cb (Results 201 - 225 of 1140) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gn/
H A Dbuild_settings.h83 void set_item_defined_callback(ItemDefinedCallback cb) { argument
84 item_defined_callback_ = cb;
92 void set_print_callback(const PrintCallback& cb) { print_callback_ = cb; } argument
/external/iptables/extensions/
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) {
H A Dlibip6t_rt.c102 static void rt_parse(struct xt_option_call *cb) argument
104 struct ip6t_rt *rtinfo = cb->data;
106 xtables_option_parse(cb);
107 switch (cb->entry->id) {
109 if (cb->invert)
114 if (cb->nvals == 1)
116 if (cb->invert)
121 if (cb->invert)
126 if (!(cb->xflags & F_RT_TYPE) || rtinfo->rt_type != 0 ||
133 if (!(cb
[all...]
H A Dlibipt_DNAT.c151 static void DNAT_parse(struct xt_option_call *cb) argument
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) argument
[all...]
H A Dlibipt_SNAT.c151 static void SNAT_parse(struct xt_option_call *cb) argument
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_SRC) {
176 *cb->target = parse_to(cb->arg, portok, info);
177 cb->xflags |= F_X_TO_SRC;
185 static void SNAT_fcheck(struct xt_fcheck_call *cb) argument
[all...]
H A Dlibxt_CHECKSUM.c32 static void CHECKSUM_parse(struct xt_option_call *cb) argument
34 struct xt_CHECKSUM_info *einfo = cb->data;
36 xtables_option_parse(cb);
H A Dlibxt_SECMARK.c32 static void SECMARK_parse(struct xt_option_call *cb) argument
34 struct xt_secmark_target_info *info = cb->data;
36 xtables_option_parse(cb);
/external/qemu/android/
H A Dasync-socket-connector.h92 * cb, cb_opaque - Callback to invoke on connection events. This callback is
105 asc_event_cb cb,
H A Dmultitouch-port.h95 * cb - Callback to invoke when update has been transferred to the MT-emulating
97 * cb_opaque - An opaque parameter to pass back to the 'cb' callback.
107 on_sdkctl_direct_cb cb,
/external/aac/libMpegTPEnc/src/
H A Dtpenc_latm.h170 * \param cb callback information structure.
180 CSTpCallBacks *cb
203 * \param cb callback information structure.
213 CSTpCallBacks *cb
251 * \param cb callback information structure.
260 CSTpCallBacks *cb
/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
/external/chromium_org/mojo/examples/compositor_app/
H A Dcompositor_app.cc39 CommandBufferPtr cb; variable
42 native_viewport_id, Size::From(gfx::Size(800, 600)), Get(&cb));
43 host_.reset(new CompositorHost(cb.PassMessagePipe()));
/external/llvm/lib/MC/
H A DStringTableBuilder.cpp21 char cb = b[sizeB - i - 1]; local
22 if (ca != cb)
23 return ca > cb;
/external/openssl/crypto/rsa/
H A Drsa_gen.c74 static int rsa_builtin_keygen(RSA *rsa, int bits, BIGNUM *e_value, BN_GENCB *cb);
81 int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e_value, BN_GENCB *cb) argument
92 return rsa->meth->rsa_keygen(rsa, bits, e_value, cb);
95 return FIPS_rsa_generate_key_ex(rsa, bits, e_value, cb);
97 return rsa_builtin_keygen(rsa, bits, e_value, cb);
100 static int rsa_builtin_keygen(RSA *rsa, int bits, BIGNUM *e_value, BN_GENCB *cb) argument
135 if(!BN_generate_prime_ex(rsa->p, bitsp, 0, NULL, NULL, cb))
140 if(!BN_GENCB_call(cb, 2, n++))
143 if(!BN_GENCB_call(cb, 3, 0))
153 if(!BN_generate_prime_ex(rsa->q, bitsq, 0, NULL, NULL, cb))
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dutils.c18 int (*cb)(void *ctx, const u8 *sa,
35 n->cb = cb;
/external/wpa_supplicant_8/src/ap/
H A Dutils.c18 int (*cb)(void *ctx, const u8 *sa,
35 n->cb = cb;
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dutils.c18 int (*cb)(void *ctx, const u8 *sa,
35 n->cb = cb;
/external/chromium_org/third_party/libevent/
H A Dbuffer.c119 if (inbuf->off != oldoff && inbuf->cb != NULL)
120 (*inbuf->cb)(inbuf, oldoff, inbuf->off, inbuf->cbarg);
121 if (oldoff && outbuf->cb != NULL)
122 (*outbuf->cb)(outbuf, 0, oldoff, outbuf->cbarg);
166 if (buf->cb != NULL)
167 (*buf->cb)(buf, oldoff, buf->off, buf->cbarg);
313 if (datlen && buf->cb != NULL)
314 (*buf->cb)(buf, oldoff, buf->off, buf->cbarg);
338 if (buf->off != oldoff && buf->cb != NULL)
339 (*buf->cb)(bu
[all...]
/external/openssl/crypto/asn1/
H A Dn_pkey.c110 int (*cb)(char *buf, int len, const char *prompt,
115 int (*cb)(char *buf, int len, const char *prompt,
118 return i2d_RSA_NET(a, pp, cb, 0);
122 int (*cb)(char *buf, int len, const char *prompt, int verify),
199 if (cb == NULL)
200 cb=EVP_read_pw_string;
201 i=cb((char *)buf,256,"Enter Private Key password:",1);
239 int (*cb)(char *buf, int len, const char *prompt,
242 return d2i_RSA_NET(a, pp, length, cb, 0);
246 int (*cb)(cha
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_state.c1135 struct pipe_constant_buffer cb; local
1161 cb.buffer = NULL;
1162 cb.user_buffer = state->ucp;
1163 cb.buffer_offset = 0;
1164 cb.buffer_size = 4*4*8;
1165 r600_set_constant_buffer(ctx, PIPE_SHADER_VERTEX, 1, &cb);
1166 pipe_resource_reference(&cb.buffer, NULL);
1861 struct pipe_constant_buffer *cb; local
1866 cb = &state->cb[buffer_inde
2156 struct r600_command_buffer *cb = &rctx->start_cs_cmd; local
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_state.c1135 struct pipe_constant_buffer cb; local
1161 cb.buffer = NULL;
1162 cb.user_buffer = state->ucp;
1163 cb.buffer_offset = 0;
1164 cb.buffer_size = 4*4*8;
1165 r600_set_constant_buffer(ctx, PIPE_SHADER_VERTEX, 1, &cb);
1166 pipe_resource_reference(&cb.buffer, NULL);
1861 struct pipe_constant_buffer *cb; local
1866 cb = &state->cb[buffer_inde
2156 struct r600_command_buffer *cb = &rctx->start_cs_cmd; local
[all...]
/external/chromium_org/third_party/leveldatabase/src/util/
H A Denv_test.cc45 CB* cb = reinterpret_cast<CB*>(v); local
46 void* cur = cb->last_id_ptr->NoBarrier_Load();
47 ASSERT_EQ(cb->id-1, reinterpret_cast<uintptr_t>(cur));
48 cb->last_id_ptr->Release_Store(reinterpret_cast<void*>(cb->id));
/external/chromium_org/third_party/skia/include/utils/win/
H A DSkIStream.h40 virtual HRESULT STDMETHODCALLTYPE Read(void* pv, ULONG cb, ULONG* pcbRead);
43 , ULONG cb
94 virtual HRESULT STDMETHODCALLTYPE Read(void* pv, ULONG cb, ULONG* pcbRead);
97 , ULONG cb
122 , ULONG cb
/external/chromium_org/third_party/skia/src/core/
H A DSkError.cpp65 void SkSetErrorCallback(SkErrorCallbackFunction cb, void *context) { argument
66 SkErrorInternals::SetErrorCallback(cb, context);
74 void SkErrorInternals::SetErrorCallback(SkErrorCallbackFunction cb, void *context) { argument
75 if (cb == NULL) {
78 THREAD_ERROR_CALLBACK = cb;
/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)

Completed in 597 milliseconds

1234567891011>>