/frameworks/base/libs/utils/ |
D | Debug.cpp | 163 void printTypeCode(uint32_t typeCode, debugPrintFunc func, void* cookie) in printTypeCode() argument 168 func ? (*func)(cookie, buffer) : defaultPrintFunc(cookie, buffer); in printTypeCode() 174 debugPrintFunc func, void* cookie) in printHexData() argument 181 if (func == NULL) func = defaultPrintFunc; in printHexData() 188 if (singleLineBytesCutoff < 0) func(cookie, "\n"); in printHexData() 189 func(cookie, "(NULL)"); in printHexData() 194 if (singleLineBytesCutoff < 0) func(cookie, "\n"); in printHexData() 195 func(cookie, "(empty)"); in printHexData() 200 if (singleLineBytesCutoff < 0) func(cookie, "\n"); in printHexData() 203 func(cookie, buf); in printHexData() [all …]
|
D | Threads.cpp | 166 int (*func)(void*); member 174 result = (*(pDetails->func))(pDetails->arg); in threadIntermediary() 191 pDetails->func = fn; in doCreateThread() 267 void androidSetCreateThreadFunc(android_create_thread_fn func) in androidSetCreateThreadFunc() argument 269 gCreateThreadFn = func; in androidSetCreateThreadFunc()
|
/frameworks/base/core/jni/ |
D | android_bluetooth_common.h | 107 const char *func, 115 const char *func, 124 const char *func, 133 const char *func, 143 const char *func,
|
D | android_bluetooth_common.cpp | 125 const char *func, in dbus_func_args_async_valist() argument 134 msg = dbus_message_new_method_call(BLUEZ_DBUS_BASE_IFC, path, ifc, func); in dbus_func_args_async_valist() 182 const char *func, in dbus_func_args_async() argument 191 path, ifc, func, in dbus_func_args_async() 209 const char *func, in dbus_func_args_timeout_valist() argument 223 msg = dbus_message_new_method_call(BLUEZ_DBUS_BASE_IFC, path, ifc, func); in dbus_func_args_timeout_valist() 255 const char *func, in dbus_func_args_timeout() argument 262 path, ifc, func, in dbus_func_args_timeout() 272 const char *func, in dbus_func_args() argument 279 path, ifc, func, in dbus_func_args() [all …]
|
/frameworks/base/media/libstagefright/ |
D | DataSource.cpp | 71 void DataSource::RegisterSniffer(SnifferFunc func) { in RegisterSniffer() argument 76 if (*it == func) { in RegisterSniffer() 81 gSniffers.push_back(func); in RegisterSniffer()
|
/frameworks/base/libs/binder/ |
D | BpBinder.cpp | 45 IBinder::object_cleanup_func func) in attach() argument 50 e.func = func; in attach() 79 if (e.func != NULL) { in kill() 80 e.func(mObjects.keyAt(i), e.object, e.cleanupCookie); in kill() 288 object_cleanup_func func) in attachObject() argument 292 mObjects.attach(objectID, object, cleanupCookie, func); in attachObject()
|
D | Binder.cpp | 137 object_cleanup_func func) in attachObject() argument 152 e->mObjects.attach(objectID, object, cleanupCookie, func); in attachObject()
|
/frameworks/base/include/binder/ |
D | BpBinder.h | 55 object_cleanup_func func); 73 IBinder::object_cleanup_func func); 87 IBinder::object_cleanup_func func; member
|
/frameworks/base/include/utils/ |
D | Debug.h | 56 debugPrintFunc func = 0, void* cookie = 0); 61 debugPrintFunc func = 0, void* cookie = 0);
|
D | TextOutput.h | 77 TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func); 156 inline TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func) 158 return (*func)(to);
|
/frameworks/base/libs/rs/ |
D | rsProgramFragmentStore.cpp | 95 void ProgramFragmentStore::setDepthFunc(RsDepthFunc func) in setDepthFunc() argument 99 switch(func) { in setDepthFunc() 239 void rsi_ProgramFragmentStoreDepthFunc(Context *rsc, RsDepthFunc func) in rsi_ProgramFragmentStoreDepthFunc() argument 241 rsc->mStateFragmentStore.mPFS->setDepthFunc(func); in rsi_ProgramFragmentStoreDepthFunc()
|
/frameworks/base/opengl/libagl/ |
D | state.cpp | 257 void glStencilFunc(GLenum func, GLint ref, GLuint mask) { in glStencilFunc() argument 259 if (func < GL_NEVER || func > GL_ALWAYS) { in glStencilFunc() 280 void glAlphaFunc(GLenum func, GLclampf ref) in glAlphaFunc() argument 282 glAlphaFuncx(func, gglFloatToFixed(ref)); in glAlphaFunc() 570 void glDepthFunc(GLenum func) { in glDepthFunc() argument 572 c->rasterizer.procs.depthFunc(c, func); in glDepthFunc() 580 void glAlphaFuncx(GLenum func, GLclampx ref) { in glAlphaFuncx() argument 582 c->rasterizer.procs.alphaFuncx(c, func, ref); in glAlphaFuncx()
|
/frameworks/base/tests/backup/ |
D | backup_helper_test.cpp | 32 test_func func; member 90 t->result = t->func(); in main()
|
/frameworks/base/cmds/servicemanager/ |
D | binder.h | 50 void (*func)(struct binder_state *bs, void *ptr); member 95 void binder_loop(struct binder_state *bs, binder_handler func);
|
D | binder.c | 195 uint32_t *ptr, uint32_t size, binder_handler func) in binder_parse() argument 226 if (func) { in binder_parse() 234 res = func(bs, txn, &msg, &reply); in binder_parse() 259 death->func(bs, death->ptr); in binder_parse() 357 void binder_loop(struct binder_state *bs, binder_handler func) in binder_loop() argument 382 res = binder_parse(bs, 0, readbuf, bwr.read_consumed, func); in binder_loop()
|
/frameworks/base/tools/localize/ |
D | XLIFFFile.h | 54 void Filter(bool (*func)(const string&,const TransUnit&,void*), void* cookie); 55 void Map(void (*func)(const string&,TransUnit*,void*), void* cookie);
|
/frameworks/base/graphics/java/android/renderscript/ |
D | ProgramStore.java | 117 public void setDepthFunc(DepthFunc func) { in setDepthFunc() argument 118 mDepthFunc = func; in setDepthFunc()
|
D | Script.java | 101 public Invokable addInvokable(String func) { in addInvokable() argument 103 i.mName = func; in addInvokable()
|
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
D | ufunction.h | 55 #define STD_BINARY_FUNCTOR(name, rv, func) \ argument 57 { inline rv operator()(const T& a, const T& b) const { return func; } }; 58 #define STD_UNARY_FUNCTOR(name, rv, func) \ argument 60 { inline rv operator()(const T& a) const { return func; } }; 61 #define STD_CONVERSION_FUNCTOR(name, func) \ argument 63 { inline D operator()(const S& a) const { return func; } };
|
/frameworks/base/opengl/tools/glgen/specs/gles11/ |
D | GLES10.spec | 2 void glAlphaFunc ( GLenum func, GLclampf ref ) 3 void glAlphaFuncx ( GLenum func, GLclampx ref ) 23 void glDepthFunc ( GLenum func ) 91 void glStencilFunc ( GLenum func, GLint ref, GLuint mask )
|
/frameworks/base/include/media/stagefright/ |
D | DataSource.h | 51 static void RegisterSniffer(SnifferFunc func);
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLErrorWrapper.java | 76 public void glAlphaFunc(int func, float ref) { in glAlphaFunc() argument 78 mgl.glAlphaFunc(func, ref); in glAlphaFunc() 82 public void glAlphaFuncx(int func, int ref) { in glAlphaFuncx() argument 84 mgl.glAlphaFuncx(func, ref); in glAlphaFuncx() 219 public void glDepthFunc(int func) { in glDepthFunc() argument 221 mgl.glDepthFunc(func); in glDepthFunc() 718 public void glStencilFunc(int func, int ref, int mask) { in glStencilFunc() argument 720 mgl.glStencilFunc(func, ref, mask); in glStencilFunc()
|
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/ |
D | GL10.java | 266 int func, in glAlphaFunc() argument 271 int func, in glAlphaFuncx() argument 408 int func in glDepthFunc() argument 850 int func, in glStencilFunc() argument
|
/frameworks/base/cmds/installd/ |
D | installd.c | 93 int (*func)(char **arg, char reply[REPLY_MAX]); member 188 ret = cmds[i].func(arg + 1, reply); in execute()
|
/frameworks/base/opengl/tools/glgen/specs/jsr239/ |
D | glspec-1.0 | 2 void glAlphaFunc ( GLenum func, GLclampf ref ) 3 void glAlphaFuncx ( GLenum func, GLclampx ref ) 23 void glDepthFunc ( GLenum func ) 91 void glStencilFunc ( GLenum func, GLint ref, GLuint mask )
|