HomeSort by relevance Sort by last modified time
    Searched refs:cb (Results 401 - 425 of 944) sorted by null

<<11121314151617181920>>

  /external/srec/srec/EventLog/src/
riff.c 57 * cb - data read from the RIFF file
61 char *cb, short **samples, int *length, int doSwap);
64 char *cb, short **samples, int *length, int doSwap);
66 char *cb, short **samples, int *length, int doSwap);
68 char *cb, short **samples, int *length, int doSwap);
215 * cb: input :1
219 char *cb, short **samples, int *length, int doSwap)
238 memcpy(*samples, cb, *length*sizeof(short));
244 for (i = 0;i < *length;i++)(*samples)[i] = (short)((unsigned)(cb[i]) - 128) << 8;
252 char *cb, short **samples, int *length, int doSwap
561 char *cb; local
    [all...]
  /external/openssl/crypto/dh/
dhtest.c 92 static int MS_CALLBACK cb(int p, int n, BN_GENCB *arg);
120 BN_GENCB_set(&_cb, &cb, out);
211 static int MS_CALLBACK cb(int p, int n, BN_GENCB *arg) function
  /external/skia/legacy/src/ports/
SkFontHost_mac_atsui.cpp 94 static OSStatus MoveTo(const Float32Point *pt, void *cb);
95 static OSStatus Line(const Float32Point *pt, void *cb);
96 static OSStatus Curve(const Float32Point *pt1, const Float32Point *pt2, const Float32Point *pt3, void *cb);
97 static OSStatus Close(void *cb);
426 OSStatus SkScalerContext_Mac::MoveTo(const Float32Point *pt, void *cb)
428 reinterpret_cast<SkPath*>(cb)->moveTo(F32PtToSkPoint(*pt));
432 OSStatus SkScalerContext_Mac::Line(const Float32Point *pt, void *cb)
434 reinterpret_cast<SkPath*>(cb)->lineTo(F32PtToSkPoint(*pt));
440 const Float32Point *pt3, void *cb)
442 reinterpret_cast<SkPath*>(cb)->cubicTo(F32PtToSkPoint(*pt1)
    [all...]
  /external/skia/src/ports/
SkFontHost_mac_atsui.cpp 94 static OSStatus MoveTo(const Float32Point *pt, void *cb);
95 static OSStatus Line(const Float32Point *pt, void *cb);
96 static OSStatus Curve(const Float32Point *pt1, const Float32Point *pt2, const Float32Point *pt3, void *cb);
97 static OSStatus Close(void *cb);
426 OSStatus SkScalerContext_Mac::MoveTo(const Float32Point *pt, void *cb)
428 reinterpret_cast<SkPath*>(cb)->moveTo(F32PtToSkPoint(*pt));
432 OSStatus SkScalerContext_Mac::Line(const Float32Point *pt, void *cb)
434 reinterpret_cast<SkPath*>(cb)->lineTo(F32PtToSkPoint(*pt));
440 const Float32Point *pt3, void *cb)
442 reinterpret_cast<SkPath*>(cb)->cubicTo(F32PtToSkPoint(*pt1)
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_backing_store.h 98 EAPI void ewk_tiled_backing_store_render_cb_set(Evas_Object *o, Eina_Bool (*cb)(void *data, Ewk_Tile *t, const Eina_Rectangle *area), const void *data);
109 EAPI void ewk_tiled_backing_store_updates_process_pre_set(Evas_Object *o, void *(*cb)(void *data, Evas_Object *o), const void *data);
110 EAPI void ewk_tiled_backing_store_updates_process_post_set(Evas_Object *o, void *(*cb)(void *data, void *pre_data, Evas_Object *o), const void *data);
  /external/wpa_supplicant_8/src/drivers/
netlink.c 24 void (*cb)(void *ctx, struct ifinfomsg *ifi,
28 if (cb == NULL || NLMSG_PAYLOAD(h, 0) < sizeof(struct ifinfomsg))
30 cb(netlink->cfg->ctx, NLMSG_DATA(h),
  /frameworks/base/core/tests/coretests/src/android/os/
BinderThreadPriorityTest.java 54 public void setPriorityAndCallBack(int p, IBinderThreadPriorityService cb) { fail(); }
55 public void callBack(IBinderThreadPriorityService cb) { fail(); }
133 public void callBack(IBinderThreadPriorityService cb) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterGeometry.java 76 RectF cb = mGeometry.getPreviewCropBounds(); local
78 if (cb.width() == 0 || cb.height() == 0 || pb.width() == 0 || pb.height() == 0) {
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PhoneWindow.java 268 final Callback cb = getCallback(); local
269 if (cb != null && !isDestroyed()) {
270 cb.onContentChanged();
287 final Callback cb = getCallback(); local
288 if (cb != null && !isDestroyed()) {
289 cb.onContentChanged();
299 final Callback cb = getCallback(); local
300 if (cb != null && !isDestroyed()) {
301 cb.onContentChanged();
377 final Callback cb = getCallback() local
555 Callback cb = getCallback(); local
726 Callback cb = getCallback(); local
982 final Callback cb = getCallback(); local
998 final Callback cb = getCallback(); local
1776 Callback cb = getCallback(); local
1789 Callback cb = getCallback(); local
1859 final Callback cb = getCallback(); local
    [all...]
  /external/expat/xmlwf/
xmlwin32url.cxx 281 IBindStatusCallback *cb = new Callback(parser, m, stopHandler, stopArg);
283 XML_SetExternalEntityRefHandlerArg(parser, cb);
284 cb->AddRef();
286 if (FAILED(hr = CreateAsyncBindCtx(0, cb, 0, &b))) {
287 cb->Release();
291 cb->Release();
  /external/openssl/crypto/pem/
pem_info.c 74 STACK_OF(X509_INFO) *PEM_X509_INFO_read(FILE *fp, STACK_OF(X509_INFO) *sk, pem_password_cb *cb, void *u)
85 ret=PEM_X509_INFO_read_bio(b,sk,cb,u);
91 STACK_OF(X509_INFO) *PEM_X509_INFO_read_bio(BIO *bp, STACK_OF(X509_INFO) *sk, pem_password_cb *cb, void *u)
245 if (!PEM_do_header(&cipher,data,&len,cb,u))
314 unsigned char *kstr, int klen, pem_password_cb *cb, void *u)
383 enc,kstr,klen,cb,u)<=0)
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp 75 JSAMPROW cb[8]; local
79 planes[1] = cb;
104 cb[i/2] = uRows + offset;
132 // cb and cr are horizontally downsampled and vertically downsampled as well.
151 JSAMPROW cb[16]; local
155 planes[1] = cb;
178 cb[i] = uRows + offset;
209 // cb and cr are horizontally downsampled and vertically downsampled as well.
  /external/chromium/third_party/libevent/
evrpc.c 102 int (*cb)(struct evhttp_request *, struct evbuffer *, void *),
122 hook->process = cb;
209 void (*cb)(struct evrpc_req_generic *, void *), void *cb_arg)
214 rpc->cb = cb;
305 rpc->cb(rpc_state, rpc->cb_arg);
557 (*ctx->cb)(&status, ctx->request, ctx->reply, ctx->cb_arg);
623 (*ctx->cb)(&status, ctx->request, ctx->reply, ctx->cb_arg);
log.c 156 event_set_log_callback(event_log_cb cb)
158 log_fn = cb;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_util.c 280 image->cb = (u8*)(image->data + picSize * 256 + tmp * 64 + col * 8);
281 image->cr = (u8*)(image->cb + picSize * 64);
  /frameworks/base/core/java/android/app/
AppOpsManager.java 435 IAppOpsCallback cb = mModeWatchers.get(callback); local
436 if (cb == null) {
437 cb = new IAppOpsCallback.Stub() {
442 mModeWatchers.put(callback, cb);
445 mService.startWatchingMode(op, packageName, cb);
453 IAppOpsCallback cb = mModeWatchers.get(callback); local
454 if (cb != null) {
456 mService.stopWatchingMode(cb);
  /packages/apps/Browser/src/com/android/browser/
DeviceAccountLogin.java 128 public void login(int accountIndex, AutoLoginCallback cb) {
130 mCallback = cb;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
IEmailService.aidl 42 void setCallback(IEmailServiceCallback cb);
  /external/wpa_supplicant_8/src/ap/
wpa_auth.c 60 if (wpa_auth->cb.mic_failure_report)
61 return wpa_auth->cb.mic_failure_report(wpa_auth->cb.ctx, addr);
70 if (wpa_auth->cb.set_eapol)
71 wpa_auth->cb.set_eapol(wpa_auth->cb.ctx, addr, var, value);
78 if (wpa_auth->cb.get_eapol == NULL)
80 return wpa_auth->cb.get_eapol(wpa_auth->cb.ctx, addr, var);
87 if (wpa_auth->cb.get_psk == NULL
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderBox.cpp 1173 RenderBlock* cb = containingBlock(); local
1181 RenderBlock* cb = containingBlock(); local
1470 RenderBlock* cb = toRenderBlock(o); local
1589 RenderBlock* cb = containingBlock(); local
1797 RenderBlock* cb = containingBlock(); local
1925 RenderBlock* cb = containingBlock(); local
2042 RenderObject* cb = isPositioned() ? container() : containingBlock(); local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
LayerDrawableTest.java 277 MockCallback cb = new MockCallback(); local
278 layerDrawable.setCallback(cb);
280 assertTrue(cb.hasCalledInvalidate());
282 cb.reset();
284 assertTrue(cb.hasCalledInvalidate());
286 cb.reset();
289 assertFalse(cb.hasCalledInvalidate());
297 MockCallback cb = new MockCallback(); local
298 layerDrawable.setCallback(cb);
300 assertTrue(cb.hasCalledSchedule())
320 MockCallback cb = new MockCallback(); local
    [all...]
  /bootable/recovery/minui/
minui.h 58 int ev_add_fd(int fd, ev_callback cb, void *data);
  /external/aac/libMpegTPEnc/include/
tpenc_lib.h 160 * \param cb callback information structure.
166 CSTpCallBacks *cb
  /external/clang/test/Misc/
diagnostic-crash.cpp 38 Closure* cb = NewCallback(this, &xxxxxxxxxxxxxxxxx::Bar, s, status); // expected-error{{cannot initialize}} local
  /external/libnl-headers/
netlink-local.h 87 int (*cb)(long, const char *));
111 static inline int nl_cb_call(struct nl_cb *cb, int type, struct nl_msg *msg)
113 return cb->cb_set[type](msg, cb->cb_args[type]);

Completed in 1187 milliseconds

<<11121314151617181920>>