HomeSort by relevance Sort by last modified time
    Searched refs:cb (Results 276 - 300 of 2026) sorted by null

<<11121314151617181920>>

  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
Form21h.java 88 CstLiteralBits cb = (CstLiteralBits) cst; local
92 int bits = cb.getIntBits();
95 long bits = cb.getLongBits();
114 CstLiteralBits cb = (CstLiteralBits) ((CstInsn) insn).getConstant(); local
119 bits = (short) (cb.getIntBits() >>> 16);
121 bits = (short) (cb.getLongBits() >>> 48);
  /external/eigen/unsupported/Eigen/src/Polynomials/
PolynomialUtils.h 83 Real cb(0);
86 cb += abs(poly[i]*inv_leading_coeff); }
87 return cb + Real(1);
110 Real cb(1);
112 cb += abs(poly[j]*inv_min_coeff); }
113 return Real(1)/cb;
  /external/iptables/extensions/
libip6t_HL.c 44 static void HL_parse(struct xt_option_call *cb)
46 struct ip6t_HL_info *info = cb->data;
48 xtables_option_parse(cb);
49 switch (cb->entry->id) {
62 static void HL_check(struct xt_fcheck_call *cb)
64 if (!(cb->xflags & F_ANY))
libipt_NETMAP.c 54 static void NETMAP_parse(struct xt_option_call *cb)
56 struct nf_nat_ipv4_multi_range_compat *mr = cb->data;
59 xtables_option_parse(cb);
61 range->min_ip = cb->val.haddr.ip & cb->val.hmask.ip;
62 range->max_ip = range->min_ip | ~cb->val.hmask.ip;
libipt_TTL.c 43 static void TTL_parse(struct xt_option_call *cb)
45 struct ipt_TTL_info *info = cb->data;
47 xtables_option_parse(cb);
48 switch (cb->entry->id) {
61 static void TTL_check(struct xt_fcheck_call *cb)
63 if (!(cb->xflags & F_ANY))
libxt_TCPMSS.c 56 static void TCPMSS_parse(struct xt_option_call *cb)
58 struct xt_tcpmss_info *mssinfo = cb->data;
60 xtables_option_parse(cb);
61 if (cb->entry->id == O_CLAMP_MSS)
65 static void TCPMSS_check(struct xt_fcheck_call *cb)
67 if (cb->xflags == 0)
libxt_TPROXY.c 121 static void tproxy_tg0_parse(struct xt_option_call *cb)
123 struct xt_tproxy_target_info *info = cb->data;
125 xtables_option_parse(cb);
126 switch (cb->entry->id) {
128 info->mark_value = cb->val.mark;
129 info->mark_mask = cb->val.mask;
132 info->laddr = cb->val.haddr.ip;
137 static void tproxy_tg1_parse(struct xt_option_call *cb)
139 struct xt_tproxy_target_info_v1 *info = cb->data;
141 xtables_option_parse(cb);
    [all...]
libxt_connlimit.c 57 static void connlimit_parse(struct xt_option_call *cb, uint8_t family)
59 struct xt_connlimit_info *info = cb->data;
60 const unsigned int revision = (*cb->match)->u.user.revision;
62 xtables_option_parse(cb);
63 switch (cb->entry->id) {
65 if (cb->invert)
69 if (!cb->invert)
89 static void connlimit_parse4(struct xt_option_call *cb)
91 return connlimit_parse(cb, NFPROTO_IPV4);
94 static void connlimit_parse6(struct xt_option_call *cb)
    [all...]
libip6t_REDIRECT.c 74 static void REDIRECT_parse(struct xt_option_call *cb)
76 const struct ip6t_entry *entry = cb->xt_entry;
77 struct nf_nat_range *range = (void *)(*cb->target)->data;
89 xtables_option_parse(cb);
90 switch (cb->entry->id) {
95 parse_ports(cb->arg, range);
96 if (cb->xflags & F_RANDOM)
100 if (cb->xflags & F_TO_PORTS)
libipt_REDIRECT.c 75 static void REDIRECT_parse(struct xt_option_call *cb)
77 const struct ipt_entry *entry = cb->xt_entry;
78 struct nf_nat_ipv4_multi_range_compat *mr = (void *)(*cb->target)->data;
90 xtables_option_parse(cb);
91 switch (cb->entry->id) {
96 parse_ports(cb->arg, mr);
97 if (cb->xflags & F_RANDOM)
101 if (cb->xflags & F_TO_PORTS)
libipt_SAME.c 74 static void SAME_parse(struct xt_option_call *cb)
76 struct ipt_same_info *mr = cb->data;
79 xtables_option_parse(cb);
80 switch (cb->entry->id) {
87 parse_to(cb->arg, &mr->range[mr->rangesize]);
100 static void SAME_fcheck(struct xt_fcheck_call *cb)
103 struct ipt_same_info *mr = cb->data;
106 if ((cb->xflags & f) == f)
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCamera.java 88 public void setPreviewCallback(Camera.PreviewCallback cb) {
89 previewCallback = cb;
93 public void setOneShotPreviewCallback(Camera.PreviewCallback cb) {
94 previewCallback = cb;
98 public void setPreviewCallbackWithBuffer(Camera.PreviewCallback cb) {
99 previewCallback = cb;
  /libcore/ojluni/src/main/java/java/io/
Console.java 405 private char[] cb; field in class:Console.LineReader
410 cb = new char[1024];
436 n = in.read(cb, 0, cb.length);
441 if (n < cb.length &&
442 cb[n-1] != '\n' && cb[n-1] != '\r') {
456 if (leftoverLF && cbuf == rcb && cb[nextChar] == '\n') {
465 c = cbuf[off++] = cb[nextChar];
466 cb[nextChar++] = 0
    [all...]
  /libcore/ojluni/src/main/java/java/nio/charset/
CharsetEncoder.java 354 CharBuffer cb = CharBuffer.allocate((int)(bb.remaining() local
356 CoderResult cr = dec.decode(bb, cb, true);
953 CharBuffer cb = CharBuffer.allocate(1); local
982 CharBuffer cb; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IsolatedService.java 75 public void registerCallback(IRemoteServiceCallback cb) {
76 if (cb != null) mCallbacks.register(cb);
78 public void unregisterCallback(IRemoteServiceCallback cb) {
79 if (cb != null) mCallbacks.unregister(cb);
121 CheckBox cb = (CheckBox)mActivity.findViewById(bind); local
122 cb.setOnClickListener(mBindListener);
  /external/boringssl/src/crypto/pem/
pem_oth.c 74 pem_password_cb *cb, void *u)
81 if (!PEM_bytes_read_bio(&data, &len, NULL, name, bp, cb, u))
  /external/boringssl/src/include/openssl/
pem.h 216 OPENSSL_EXPORT type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u)\
218 return PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str,fp,(void **)x,cb,u); \
235 unsigned char *kstr, int klen, pem_password_cb *cb, \
238 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u); \
243 unsigned char *kstr, int klen, pem_password_cb *cb, \
246 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u); \
252 OPENSSL_EXPORT type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u)\
254 return PEM_ASN1_read_bio((d2i_of_void *)d2i_##asn1, str,bp,(void **)x,cb,u); \
271 unsigned char *kstr, int klen, pem_password_cb *cb, void *u) \
273 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,x,enc,kstr,klen,cb,u);
    [all...]
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
trace_test.py 23 def go(self, cb):
32 cb()
  /external/iw/
p2p.c 16 static int handle_p2p_start(struct nl80211_state *state, struct nl_cb *cb,
24 static int handle_p2p_stop(struct nl80211_state *state, struct nl_cb *cb,
  /external/libchrome/sandbox/linux/services/
thread_helpers.cc 68 // Run |cb| in a loop until it returns false. Every time |cb| runs, sleep
69 // for an exponentially increasing amount of time. |cb| is expected to return
74 void RunWhileTrue(const base::Callback<bool(void)>& cb, const char* message) {
88 // Run |cb| with an exponential back-off, sleeping 2^iterations nanoseconds
94 if (!cb.Run()) {
120 base::Callback<bool(void)> cb; local
143 cb = base::Bind(&IsNotThreadPresentInProcFS, proc_fd, thread_id_dir_str);
146 cb = base::Bind(&IsThreadPresentInProcFS, proc_fd, thread_id_dir_str);
149 RunWhileTrue(cb, message)
174 const base::Callback<bool(void)> cb = base::Bind(&IsMultiThreaded, proc_fd); local
    [all...]
  /external/libnl/include/netlink/route/
class.h 60 void (*cb)(struct nl_object *,
65 void (*cb)(struct nl_object *,
  /external/webrtc/webrtc/base/
asyncudpsocket.h 39 size_t cb,
42 size_t cb,
  /frameworks/base/core/java/com/android/internal/widget/
DecorContentParent.java 32 void setWindowCallback(Window.Callback cb);
48 void setMenu(Menu menu, MenuPresenter.Callback cb);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
DecorContentParent.java 34 void setWindowCallback(Window.Callback cb);
50 void setMenu(Menu menu, MenuPresenter.Callback cb);
  /hardware/bsp/intel/peripheral/libupm/src/ttp223/
ttp223.cxx 63 void TTP223::installISR(mraa::Edge level, IsrCallback *cb)
65 installISR(level, generic_callback_isr, cb);

Completed in 947 milliseconds

<<11121314151617181920>>