Searched refs:func (Results 1 - 25 of 108) sorted by relevance

12345

/frameworks/wilhelm/src/
H A Dassert.c30 void __assert2(const char *file, int line, const char *func, const char *failedexpr) argument
33 failedexpr, file, line, func);
/frameworks/native/include/binder/
H A DDebug.h35 debugPrintFunc func = 0, void* cookie = 0);
40 debugPrintFunc func = 0, void* cookie = 0);
H A DBpBinder.h55 object_cleanup_func func);
73 IBinder::object_cleanup_func func);
87 IBinder::object_cleanup_func func; member in struct:android::BpBinder::ObjectManager::entry_t
H A DTextOutput.h80 TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func);
161 inline TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func) argument
163 return (*func)(to);
/frameworks/rs/cpu_ref/
H A DrsCpuRuntimeMathFuncs.cpp26 #define IMPORT_F32_FN_F32(func) \
27 extern float SC_##func##f(float v); \
28 float __attribute__((overloadable)) func(float v) {return SC_##func##f(v);}
30 #define IMPORT_F32_FN_F32_F32(func) \
31 extern float SC_##func##f(float t, float v); \
32 float __attribute__((overloadable)) func(float t, float v) {return SC_##func##f(t, v);}
H A DrsCpuScriptGroup2.h24 CPUClosure(const Closure* closure, RsdCpuScriptImpl* si, ExpandFuncTy func) : argument
25 mClosure(closure), mSi(si), mFunc(func) {}
H A DrsCpuRuntimeMath.cpp33 #define EXPORT_F32_FN_F32(func) \
34 float __attribute__((overloadable)) SC_##func(float v) { \
35 return func(v); \
38 #define EXPORT_F32_FN_F32_F32(func) \
39 float __attribute__((overloadable)) SC_##func(float t, float v) { \
40 return func(t, v); \
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.h64 void for_each_pid(for_each_pid_func func, const char *header);
67 void for_each_tid(for_each_tid_func func, const char *header);
H A Dutils.c62 void for_each_userid(void (*func)(int), const char *header) { argument
67 func(0);
79 func(userid);
120 for_each_pid_func *func = arg; local
121 func(pid, cmdline);
124 void for_each_pid(for_each_pid_func func, const char *header) { argument
125 __for_each_pid(for_each_pid_helper, header, func);
132 for_each_tid_func *func = arg; local
141 func(pid, pid, cmdline);
170 func(pi
176 for_each_tid(for_each_tid_func func, const char *header) argument
[all...]
/frameworks/base/tests/backup/
H A Dbackup_helper_test.cpp32 test_func func; member in struct:Test
90 t->result = t->func();
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
H A Dtypedefs.h168 #define ADD_PREFIX(func) LINK0(PREFIX, _, func)
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
H A DarmVCM4P10_DeblockingChroma_unsafe_s.S29 .func armVCM4P10_DeblockingChromabSLT4_unsafe
56 .func armVCM4P10_DeblockingChromabSGE4_unsafe
H A DarmVCM4P10_UnpackBlock4x4_s.S29 .func armVCM4P10_UnpackBlock4x4
H A DarmVCM4P10_InterpolateLuma_Align_unsafe_s.S29 .func armVCM4P10_InterpolateLuma_HorAlign9x_unsafe
89 .func armVCM4P10_InterpolateLuma_VerAlign4x_unsafe
/frameworks/native/cmds/servicemanager/
H A Dbinder.h26 void (*func)(struct binder_state *bs, void *ptr); member in struct:binder_death
73 void binder_loop(struct binder_state *bs, binder_handler func);
/frameworks/base/native/android/
H A Dstorage_manager.cpp73 ObbCallback* registerObbCallback(AStorageManager_obbCallbackFunc func, void* data) { argument
74 ObbCallback* cb = new ObbCallback(getNextNonce(), func, data);
128 void mountObb(const char* rawPath, const char* key, AStorageManager_obbCallbackFunc func, argument
137 ObbCallback* cb = registerObbCallback(func, data);
144 void unmountObb(const char* filename, const bool force, AStorageManager_obbCallbackFunc func, void* data) { argument
145 ObbCallback* cb = registerObbCallback(func, data);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_context.cpp243 GLMessage_Function func = msg->function(); local
244 if (func == GLMessage::eglSwapBuffers
245 || func == GLMessage::eglCreateContext
246 || func == GLMessage::eglMakeCurrent
247 || func == GLMessage::glDrawArrays
248 || func == GLMessage::glDrawElements) {
/frameworks/native/opengl/libs/GLES_trace/tools/
H A Dgenapi.py156 """$!retType!$ GLTrace_$!func!$($!inputArgList!$) {
160 glmsg.set_function(GLMessage::$!func!$);
290 # so self.func is reassigned based on what is there in the call site
291 self.func = self.getFunc(callsite)
335 return "%s GLTrace_%s(%s);" % (self.ret, self.func, self.arglist)
338 return TRACE_CALL_TEMPLATE(func = self.func,
373 if api.func not in funcs:
375 funcs.add(api.func)
H A Dtestgenapi.py33 self.assertEqual(api.func, "glCopyTexImage2D")
/frameworks/native/libs/binder/
H A DBpBinder.cpp45 IBinder::object_cleanup_func func)
50 e.func = func;
79 if (e.func != NULL) {
80 e.func(mObjects.keyAt(i), e.object, e.cleanupCookie);
287 object_cleanup_func func)
291 mObjects.attach(objectID, object, cleanupCookie, func);
43 attach( const void* objectID, void* object, void* cleanupCookie, IBinder::object_cleanup_func func) argument
285 attachObject( const void* objectID, void* object, void* cleanupCookie, object_cleanup_func func) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dasm_common.S34 .func \name
/frameworks/rs/cpp/
H A DRenderScript.cpp274 void RS::setErrorHandler(ErrorHandlerFunc_t func) { argument
275 mErrorFunc = func;
278 void RS::setMessageHandler(MessageHandlerFunc_t func) { argument
279 mMessageFunc = func;
/frameworks/native/cmds/atrace/
H A Datrace.cpp531 char* func = strtok(myFuncs, ","); local
532 while (func) {
533 String8 fancyFunc = String8::format("\n%s\n", func);
535 if (!found || func[0] == '\0') {
537 "to trace.\n", func);
540 func = strtok(NULL, ",");
571 char* func = strtok(myFuncs, ","); local
572 while (func) {
573 ok &= appendStr(k_ftraceFilterPath, func);
574 func
[all...]
/frameworks/native/opengl/libagl/
H A Dstate.cpp226 void glStencilFunc(GLenum func, GLint /*ref*/, GLuint /*mask*/) { argument
228 if (func < GL_NEVER || func > GL_ALWAYS) {
249 void glAlphaFunc(GLenum func, GLclampf ref) argument
251 glAlphaFuncx(func, gglFloatToFixed(ref));
544 void glDepthFunc(GLenum func) { argument
546 c->rasterizer.procs.depthFunc(c, func);
554 void glAlphaFuncx(GLenum func, GLclampx ref) { argument
556 c->rasterizer.procs.alphaFuncx(c, func, ref);
/frameworks/base/tools/aapt2/
H A DResourceValues.h389 TFunc func; member in struct:aapt::ValueVisitorFunc
391 ValueVisitorFunc(TFunc f) : func(f) {
395 func(value);
404 TFunc func; member in struct:aapt::ConstValueVisitorFunc
406 ConstValueVisitorFunc(TFunc f) : func(f) {
410 func(value);

Completed in 9567 milliseconds

12345