HomeSort by relevance Sort by last modified time
    Searched refs:cb (Results 101 - 125 of 446) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/qemu/
dma-helpers.c 94 dbs->common.cb(dbs->common.opaque, ret);
149 BlockDriverCompletionFunc *cb, void *opaque,
152 DMAAIOCB *dbs = qemu_aio_get(&dma_aio_pool, bs, cb, opaque);
174 void (*cb)(void *opaque, int ret), void *opaque)
176 return dma_bdrv_io(bs, sg, sector, cb, opaque, 0);
181 void (*cb)(void *opaque, int ret), void *opaque)
183 return dma_bdrv_io(bs, sg, sector, cb, opaque, 1);
  /external/svox/pico/lib/
picodbg.c 341 char cb[MAX_CONTEXT_LEN + 1]; local
377 sprintf(cb, "%-10s", picodbg_fileTitle(file));
378 strcat(ctxbuf, cb);
380 sprintf(cb, "(%d)", line);
381 strcat(ctxbuf, cb);
387 sprintf(cb, "%-18s", func);
388 strcat(ctxbuf, cb);
  /external/bluetooth/bluez/audio/
a2dp.h 137 a2dp_config_cb_t cb, GSList *caps,
140 a2dp_stream_cb_t cb, void *user_data);
142 a2dp_stream_cb_t cb, void *user_data);
sink.h 39 unsigned int sink_add_state_cb(sink_state_cb cb, void *user_data);
  /external/chromium/third_party/libevent/
evhttp.h 229 void (*cb)(struct evhttp_request *, void *); member in struct:evhttp_request
246 void (*cb)(struct evhttp_request *, void *), void *arg);
250 void (*cb)(struct evhttp_request *, void *));
event.h 347 @param cb a function taking two arguments: an integer severity between
348 _EVENT_LOG_DEBUG and _EVENT_LOG_ERR, and a string. If cb is NULL,
351 void event_set_log_callback(event_log_cb cb);
469 @param cb callback function
472 #define evtimer_set(ev, cb, arg) event_set(ev, -1, 0, cb, arg)
497 * @param cb the callback to be invoked when the timeout expires
500 #define timeout_set(ev, cb, arg) event_set(ev, -1, 0, cb, arg)
514 #define signal_set(ev, x, cb, arg)
734 void (*cb)(struct evbuffer *, size_t, size_t, void *); member in struct:evbuffer
    [all...]
http-internal.h 85 void (*cb)(struct evhttp_connection *, void *); member in struct:evhttp_connection
99 void (*cb)(struct evhttp_request *req, void *); member in struct:evhttp_cb
  /libcore/luni/src/main/java/java/net/
URLDecoder.java 129 CharBuffer cb = charset.decode(ByteBuffer.wrap(buf, 0, len)); local
130 len = cb.length();
131 System.arraycopy(cb.array(), 0, str_buf, buf_len, len);
  /external/e2fsprogs/e2fsck/
profile.c 855 static void output_quoted_string(char *str, void (*cb)(const char *,void *),
861 cb("\"", data);
863 cb("\"", data);
870 cb("\\\\", data);
873 cb("\\n", data);
876 cb("\\t", data);
879 cb("\\b", data);
886 cb(buf, data);
890 cb("\"", data);
899 void (*cb)(const char *, void *), void *data
    [all...]
  /external/libvpx/vpx/src/
vpx_decoder_compat.c 113 vpx_dec_put_frame_cb_fn_t cb,
116 return vpx_codec_register_put_frame_cb((vpx_codec_ctx_t *)ctx, cb,
122 vpx_dec_put_slice_cb_fn_t cb,
125 return vpx_codec_register_put_slice_cb((vpx_codec_ctx_t *)ctx, cb,
vpx_decoder.c 149 vpx_codec_put_frame_cb_fn_t cb,
154 if (!ctx || !cb)
161 ctx->priv->dec.put_frame_cb.put_frame = cb;
171 vpx_codec_put_slice_cb_fn_t cb,
176 if (!ctx || !cb)
183 ctx->priv->dec.put_slice_cb.put_slice = cb;
  /external/openssl/crypto/evp/
pmeth_gn.c 165 void EVP_PKEY_CTX_set_cb(EVP_PKEY_CTX *ctx, EVP_PKEY_gen_cb *cb)
167 ctx->pkey_gencb = cb;
187 void evp_pkey_set_cb_translate(BN_GENCB *cb, EVP_PKEY_CTX *ctx)
189 BN_GENCB_set(cb, trans_cb, ctx)
  /external/sqlite/android/
OldPhoneNumberUtils.cpp 219 char ca, cb; local
230 cb = b[ib];
232 if (!isNonSeparator(cb)) {
239 if (cb != ca) {
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
httpread.h 77 void (*cb)(struct httpread *handle, void *cookie,
  /external/wpa_supplicant_6/wpa_supplicant/tests/
link_test.c 28 int (*cb)(struct hostapd_data *hapd, struct sta_info *sta,
test_wpa.c 292 struct wpa_auth_callbacks cb; local
304 os_memset(&cb, 0, sizeof(cb));
305 cb.ctx = wpa;
306 cb.logger = auth_logger;
307 cb.send_eapol = auth_send_eapol;
308 cb.get_psk = auth_get_psk;
310 wpa->auth_group = wpa_init(wpa->auth_addr, &conf, &cb);
  /hardware/msm7k/libcamera/
QualcommCameraHardware.h 37 virtual status_t startPreview(preview_callback cb, void* user);
40 virtual status_t startRecording(recording_callback cb, void* user);
92 static void stop_camera_cb(camera_cb_type cb,
97 static void camera_cb(camera_cb_type cb,
  /external/dropbear/libtommath/
bn_mp_prime_random_ex.c 34 int mp_prime_random_ex(mp_int *a, int t, int size, int flags, ltm_prime_callback cb, void *dat)
76 if (cb(tmp, bsize, dat) != bsize) {
  /external/openssl/apps/
dhparam.c 146 static int MS_CALLBACK dh_cb(int p, int n, BN_GENCB *cb);
298 BN_GENCB cb; local
299 BN_GENCB_set(&cb, dh_cb, bio_err);
315 NULL, 0, NULL, NULL, &cb))
336 if(!dh || !DH_generate_parameters_ex(dh, num, g, &cb))
541 static int MS_CALLBACK dh_cb(int p, int n, BN_GENCB *cb)
549 BIO_write(cb->arg,&c,1);
550 (void)BIO_flush(cb->arg);
  /hardware/ti/wlan/wl1271/platforms/os/linux/inc/
wbuf.h 93 #define WBUF_CB(pWbuf) ( ((struct sk_buff *)(pWbuf))->cb )
103 ( (unsigned long) &( ( (WBUF_PARAMS *) &( ( (struct sk_buff *)0 )->cb ) )->queNodeHdr ) )
  /libcore/luni/src/main/java/java/math/
NativeBN.java 158 int add, int rem, int cb);
160 // const BIGNUM *add, const BIGNUM *rem, BN_GENCB *cb);
162 public static native boolean BN_is_prime_ex(int p, int nchecks, int cb);
163 // int BN_is_prime_ex(const BIGNUM *p, int nchecks, BN_CTX *ctx, BN_GENCB *cb);
167 // int do_trial_division, BN_GENCB *cb);
  /packages/apps/Email/src/com/android/email/service/
IEmailService.aidl 38 void setCallback(IEmailServiceCallback cb);
  /system/wlan/ti/wilink_6_1/platforms/os/linux/inc/
wbuf.h 93 #define WBUF_CB(pWbuf) ( ((struct sk_buff *)(pWbuf))->cb )
103 ( (unsigned long) &( ( (WBUF_PARAMS *) &( ( (struct sk_buff *)0 )->cb ) )->queNodeHdr ) )
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp 75 JSAMPROW cb[8]; local
79 planes[1] = cb;
103 cb[i/2] = uRows + offset;
129 // cb and cr are horizontally downsampled and vertically downsampled as well.
148 JSAMPROW cb[16]; local
152 planes[1] = cb;
174 cb[i] = uRows + offset;
203 // cb and cr are horizontally downsampled and vertically downsampled as well.
  /libcore/luni/src/main/java/java/nio/charset/
CharsetEncoder.java 201 private boolean implCanEncode(CharBuffer cb) {
214 this.encode(cb);
242 CharBuffer cb; local
244 cb = ((CharBuffer) sequence).duplicate();
246 cb = CharBuffer.wrap(sequence);
248 return implCanEncode(cb);

Completed in 746 milliseconds

1 2 3 45 6 7 8 91011>>