/frameworks/compile/libbcc/lib/ExecutionEngine/ |
D | Runtime.c | 31 #define DEF_GENERIC_RUNTIME(func) \ argument 32 extern void *func; 33 #define DEF_VFP_RUNTIME(func) \ argument 34 extern void *func ## vfp; 35 #define DEF_LLVM_RUNTIME(func) argument 36 #define DEF_BCC_RUNTIME(func) argument 42 #define DEF_GENERIC_RUNTIME(func) \ argument 43 { #func, (void*) &func }, 45 #define DEF_VFP_RUNTIME(func) \ argument 46 { #func, (void*) &func ## vfp }, [all …]
|
D | Runtime.def | 18 # define DEF_GENERIC_OR_VFP_RUNTIME(func) DEF_VFP_RUNTIME(func) 19 # define DEF_LLVM_OR_VFP_RUNTIME(func) DEF_VFP_RUNTIME(func) 22 # define DEF_VFP_RUNTIME(func) 23 # define DEF_GENERIC_OR_VFP_RUNTIME(func) DEF_GENERIC_RUNTIME(func) 24 # define DEF_LLVM_OR_VFP_RUNTIME(func) DEF_LLVM_RUNTIME(func)
|
/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 …]
|
/frameworks/base/native/android/ |
D | storage_manager.cpp | 73 ObbCallback* registerObbCallback(AStorageManager_obbCallbackFunc func, void* data) { in registerObbCallback() 74 ObbCallback* cb = new ObbCallback(getNextNonce(), func, data); in registerObbCallback() 128 …void mountObb(const char* filename, const char* key, AStorageManager_obbCallbackFunc func, void* d… in mountObb() 129 ObbCallback* cb = registerObbCallback(func, data); in mountObb() 135 …void unmountObb(const char* filename, const bool force, AStorageManager_obbCallbackFunc func, void… in unmountObb() 136 ObbCallback* cb = registerObbCallback(func, data); in unmountObb()
|
/frameworks/base/core/jni/ |
D | android_bluetooth_common.h | 110 const char *func, 118 const char *func, 127 const char *func, 136 const char *func, 146 const char *func,
|
D | android_bluetooth_common.cpp | 149 const char *func, in dbus_func_args_async_valist() argument 158 msg = dbus_message_new_method_call(BLUEZ_DBUS_BASE_IFC, path, ifc, func); in dbus_func_args_async_valist() 206 const char *func, in dbus_func_args_async() argument 216 path, ifc, func, in dbus_func_args_async() 234 const char *func, in dbus_func_args_timeout_valist() argument 248 msg = dbus_message_new_method_call(BLUEZ_DBUS_BASE_IFC, path, ifc, func); in dbus_func_args_timeout_valist() 280 const char *func, in dbus_func_args_timeout() argument 287 path, ifc, func, in dbus_func_args_timeout() 297 const char *func, in dbus_func_args() argument 304 path, ifc, func, in dbus_func_args() [all …]
|
/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()
|
/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/media/libstagefright/ |
D | DataSource.cpp | 91 void DataSource::RegisterSniffer(SnifferFunc func) { in RegisterSniffer() argument 96 if (*it == func) { in RegisterSniffer() 101 gSniffers.push_back(func); in RegisterSniffer()
|
/frameworks/base/opengl/libagl/ |
D | state.cpp | 225 void glStencilFunc(GLenum func, GLint ref, GLuint mask) { in glStencilFunc() argument 227 if (func < GL_NEVER || func > GL_ALWAYS) { in glStencilFunc() 248 void glAlphaFunc(GLenum func, GLclampf ref) in glAlphaFunc() argument 250 glAlphaFuncx(func, gglFloatToFixed(ref)); in glAlphaFunc() 543 void glDepthFunc(GLenum func) { in glDepthFunc() argument 545 c->rasterizer.procs.depthFunc(c, func); in glDepthFunc() 553 void glAlphaFuncx(GLenum func, GLclampx ref) { in glAlphaFuncx() argument 555 c->rasterizer.procs.alphaFuncx(c, func, ref); in glAlphaFuncx()
|
/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/tests/backup/ |
D | backup_helper_test.cpp | 32 test_func func; member 90 t->result = t->func(); in main()
|
/frameworks/media/libvideoeditor/osal/src/ |
D | M4OSA_Thread.c | 67 if((threadContext->func(threadContext->param)) != M4NO_ERROR) in M4OSA_threadSyncForEverDo() 122 M4OSA_ThreadDoIt func) in M4OSA_threadSyncOpen() argument 128 "M4OSA_ThreadDoIt 0x%x", context, func); in M4OSA_threadSyncOpen() 133 M4OSA_DEBUG_IF2(func == M4OSA_NULL, in M4OSA_threadSyncOpen() 149 threadContext->func = func; in M4OSA_threadSyncOpen()
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/ |
D | armVCM4P10_DeblockingChroma_unsafe_s.S | 14 .func armVCM4P10_DeblockingChromabSLT4_unsafe 41 .func armVCM4P10_DeblockingChromabSGE4_unsafe
|
D | armVCM4P10_Average_4x_Align_unsafe_s.S | 14 .func armVCM4P10_Average_4x4_Align0_unsafe 46 .func armVCM4P10_Average_4x4_Align2_unsafe 90 .func armVCM4P10_Average_4x4_Align3_unsafe
|
D | omxVCM4P10_TransformDequantLumaDCFromPair_s.S | 14 .func armVCM4P10_InvTransformDequantLumaDC4x4 62 .func omxVCM4P10_TransformDequantLumaDCFromPair
|
/frameworks/base/opengl/libagl2/src/ |
D | api.cpp | 32 void API_ENTRY(glDepthFunc)(GLenum func) in API_ENTRY() 34 CALL_GL_API(glDepthFunc, func); in API_ENTRY() 183 void API_ENTRY(glStencilFunc)(GLenum func, GLint ref, GLuint mask) in API_ENTRY() 185 CALL_GL_API(glStencilFunc, func, ref, mask); in API_ENTRY() 187 void API_ENTRY(glStencilFuncSeparate)(GLenum face, GLenum func, GLint ref, GLuint mask) in API_ENTRY() 189 CALL_GL_API(glStencilFuncSeparate, face, func, ref, mask); in API_ENTRY()
|
/frameworks/base/media/libstagefright/codecs/aacenc/basic_op/ |
D | typedefs.h | 163 #define ADD_PREFIX(func) LINK0(PREFIX, _, func) argument
|
/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/compile/libbcc/lib/ExecutionEngine/OldJIT/ |
D | CacheReader.cpp | 394 OBCC_FuncInfo *func = &func_table_raw->table[i]; in readFuncTable() local 395 table.insert(make_pair(strPool[func->name_strp_index], in readFuncTable() 396 make_pair(func->cached_addr, func->size))); in readFuncTable()
|
/frameworks/base/cmds/dumpstate/ |
D | dumpstate.h | 43 void for_each_pid(void (*func)(int, const char *), const char *header);
|
/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 )
|