/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);
|
/external/qemu/distrib/sdl-1.2.15/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/skia/src/utils/win/ |
SkIStream.cpp | 55 , ULONG cb 60 , ULONG cb 130 HRESULT STDMETHODCALLTYPE SkIStream::Read(void* pv, ULONG cb, ULONG* pcbRead) { 131 *pcbRead = this->fSkStream->read(pv, cb); 133 return (*pcbRead == cb) ? S_OK : S_FALSE; 137 , ULONG cb 238 , ULONG cb 242 bool wrote = this->fSkWStream->write(pv, cb); 244 *pcbWritten = cb;
|
/external/wpa_supplicant_8/src/wps/ |
http_server.h | 27 void (*cb)(void *ctx,
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
BatteryController.java | 63 public void addStateChangedCallback(BatteryStateChangeCallback cb) { 64 mChangeCallbacks.add(cb); 100 for (BatteryStateChangeCallback cb : mChangeCallbacks) { 101 cb.onBatteryLevelChanged(level, plugged);
|
/prebuilts/gcc/linux-x86/host/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 */,
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/ |
scache.h | 95 pa_context_success_cb_t cb /**< Call this function after successfully starting playback, or NULL */,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/ |
scache.h | 95 pa_context_success_cb_t cb /**< Call this function after successfully starting playback, or NULL */,
|
/system/core/include/system/ |
graphics.h | 74 * by (W/2) x (H/2) Cr and Cb planes. 227 * @y, @cb, and @cr point to the first byte of their respective planes. 242 void *cb; member in struct:android_ycbcr
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
ScaleDrawableTest.java | 56 MockCallback cb = new MockCallback(); local 57 scaleDrawable.setCallback(cb); 59 assertTrue(cb.hasCalledInvalidate()); 61 cb.reset(); 63 assertTrue(cb.hasCalledInvalidate()); 65 cb.reset(); 68 assertFalse(cb.hasCalledInvalidate()); 76 MockCallback cb = new MockCallback(); local 77 scaleDrawable.setCallback(cb); 79 assertTrue(cb.hasCalledSchedule()) 99 MockCallback cb = new MockCallback(); local [all...] |
/bionic/libc/kernel/common/linux/ |
relay.h | 65 struct rchan_callbacks *cb; member in struct:rchan 99 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/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/elfutils/tests/ |
allfcts.c | 36 cb (Dwarf_Die *func, void *arg __attribute__ ((unused))) function 68 (void) dwarf_getfuncs (die, cb, NULL, 0);
|
/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/libvpx/vpx/ |
vpx_decoder.h | 269 * \param[in] cb Pointer to the callback function 279 vpx_codec_put_frame_cb_fn_t cb, 311 * \param[in] cb Pointer to the callback function 321 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);
|