HomeSort by relevance Sort by last modified time
    Searched refs:cb (Results 201 - 225 of 766) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/iptables/extensions/
libxt_NFLOG.c 48 static void NFLOG_parse(struct xt_option_call *cb)
50 xtables_option_parse(cb);
51 switch (cb->entry->id) {
53 if (strchr(cb->arg, '\n') != NULL)
libxt_TCPOPTSTRIP.c 94 static void tcpoptstrip_tg_parse(struct xt_option_call *cb)
96 struct xt_tcpoptstrip_target_info *info = cb->data;
98 xtables_option_parse(cb);
99 parse_list(info, cb->arg);
libxt_dccp.c 99 static void dccp_parse(struct xt_option_call *cb)
101 struct xt_dccp_info *einfo = cb->data;
103 xtables_option_parse(cb);
104 switch (cb->entry->id) {
107 if (cb->invert)
112 if (cb->invert)
117 einfo->typemask = parse_dccp_types(cb->arg);
118 if (cb->invert)
123 if (cb->invert)
libxt_string.c 168 static void string_parse(struct xt_option_call *cb)
170 struct xt_string_info *stringinfo = cb->data;
171 const unsigned int revision = (*cb->match)->u.user.revision;
173 xtables_option_parse(cb);
174 switch (cb->entry->id) {
176 parse_string(cb->arg, stringinfo);
177 if (cb->invert) {
185 parse_hex_string(cb->arg, stringinfo); /* sets length */
186 if (cb->invert) {
203 static void string_check(struct xt_fcheck_call *cb)
    [all...]
  /external/kernel-headers/original/linux/
errqueue.h 29 #define SKB_EXT_ERR(skb) ((struct sock_exterr_skb *) ((skb)->cb))
  /external/openssl/crypto/engine/
eng_int.h 103 ENGINE_CLEANUP_CB *cb; member in struct:st_engine_cleanup_item
106 void engine_cleanup_add_first(ENGINE_CLEANUP_CB *cb);
107 void engine_cleanup_add_last(ENGINE_CLEANUP_CB *cb);
131 void engine_table_doall(ENGINE_TABLE *table, engine_table_doall_cb *cb, void *arg);
eng_lib.c 159 static ENGINE_CLEANUP_ITEM *int_cleanup_item(ENGINE_CLEANUP_CB *cb)
164 item->cb = cb;
167 void engine_cleanup_add_first(ENGINE_CLEANUP_CB *cb)
171 item = int_cleanup_item(cb);
175 void engine_cleanup_add_last(ENGINE_CLEANUP_CB *cb)
179 item = int_cleanup_item(cb);
186 (*(item->cb))();
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_yuv_mmx.c 75 It is a requirement that the cr/cb/lum are 8 byte aligned and
82 unsigned char *cb, unsigned char *out,
143 // create Cb (result in mm1)
217 "addl $2,%1\n" // cb+2
233 : "m" (cr), "r"(cb),"r"(lum),
243 unsigned char *cb, unsigned char *out,
266 "movd (%1), %%mm0\n" // 4 Cb 0 0 0 0 u3 u2 u1 u0
273 "punpcklbw %%mm7, %%mm0\n" // 4 W cb 0 u3 0 u2 0 u1 0 u0
277 "movq %%mm0, %%mm2\n" // Cb 0 u3 0 u2 0 u1 0 u0
417 : "m" (cr), "r"(cb),"r"(lum)
    [all...]
  /external/qemu/
gdbstub.h 17 void gdb_do_syscall(gdb_syscall_complete_cb cb, const char *fmt, ...);
charpipe.c 39 CBuffer cb[1]; member in struct:BipBuffer
59 cbuffer_reset( bip->cb, bip->buff, sizeof(bip->buff) );
138 int len2 = cbuffer_write( bip->cb, buf, len );
172 size = cbuffer_read_avail(bip->cb);
191 avail = cbuffer_read_peek( bip->cb, &base );
198 cbuffer_read_step( bip->cb, avail );
328 int len2 = cbuffer_write( bip->cb, buf, len );
362 avail = cbuffer_read_peek( bip->cb, &base );
378 cbuffer_read_step( bip->cb, size );
448 CharBuffer* cb = _s_charbuffers local
    [all...]
  /external/wpa_supplicant_8/src/wps/
http_server.h 33 void (*cb)(void *ctx,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
scache.h 95 pa_context_success_cb_t cb /**< Call this function after successfully starting playback, or NULL */,
  /external/openssl/ssl/
s23_clnt.c 145 void (*cb)(const SSL *ssl,int type,int val)=NULL;
154 cb=s->info_callback;
156 cb=s->ctx->info_callback;
179 if (cb != NULL) cb(s,SSL_CB_HANDSHAKE_START,1);
223 if (ret >= 0) cb=NULL;
236 if ((cb != NULL) && (s->state != state))
240 cb(s,SSL_CB_CONNECT_LOOP,1);
248 if (cb != NULL)
249 cb(s,SSL_CB_CONNECT_EXIT,ret)
    [all...]
  /bionic/libc/kernel/common/linux/
relay.h 54 struct rchan_callbacks *cb; member in struct:rchan
88 struct rchan_callbacks *cb);
  /development/ndk/platforms/android-3/include/linux/
relay.h 54 struct rchan_callbacks *cb; member in struct:rchan
88 struct rchan_callbacks *cb);
  /external/bluetooth/bluez/audio/
device.h 88 authorization_cb cb, void *user_data);
91 const char *uuid, authorization_cb cb,
  /external/chromium/third_party/libjingle/source/talk/base/
openssladapter.h 52 virtual int Send(const void* pv, size_t cb);
53 virtual int Recv(void* pv, size_t cb);
  /external/javassist/src/main/javassist/expr/
Expr.java 100 CtBehavior[] cb = thisClass.getDeclaredBehaviors(); local
101 for (int i = cb.length - 1; i >= 0; --i)
102 if (cb[i].getMethodInfo2() == mi)
103 return cb[i];
114 for (int i = cb.length - 1; i >= 0; --i) {
115 if (thisMethod.getName().equals(cb[i].getMethodInfo2().getName())
117 .equals(cb[i].getMethodInfo2().getDescriptor())) {
118 return cb[i];
  /external/libnl-headers/netlink/route/
qdisc.h 60 void (*cb)(struct nl_object *, void *),
64 void (*cb)(struct nl_object *, void *),
  /external/libvpx/vpx/
vpx_decoder.h 249 * \param[in] cb Pointer to the callback function
259 vpx_codec_put_frame_cb_fn_t cb,
291 * \param[in] cb Pointer to the callback function
301 vpx_codec_put_slice_cb_fn_t cb,
  /external/openssl/crypto/dsa/
dsagen.c 80 int cb(int p, int n) function
106 dsa=DSA_generate_parameters(1024,seed,20,&counter,&h,cb,bio_err);
  /external/openssl/crypto/err/
err_prn.c 66 void ERR_print_errors_cb(int (*cb)(const char *str, size_t len, void *u),
84 if (cb(buf2, strlen(buf2), u) <= 0)
  /external/qemu/hw/
sysbus.h 23 mmio_mapfunc cb; member in struct:SysBusDevice::__anon10108
44 mmio_mapfunc cb);
  /frameworks/base/core/java/android/app/
IWallpaperManager.aidl 41 ParcelFileDescriptor getWallpaper(IWallpaperManagerCallback cb,
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
relay.h 54 struct rchan_callbacks *cb; member in struct:rchan
88 struct rchan_callbacks *cb);

Completed in 394 milliseconds

1 2 3 4 5 6 7 891011>>