Searched defs:func (Results 1 - 25 of 56) sorted by relevance

123

/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/base/tests/backup/
H A Dbackup_helper_test.cpp32 test_func func; member in struct:Test
90 t->result = t->func();
/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);
H A Dbinder.c205 uintptr_t ptr, size_t size, binder_handler func)
237 if (func) {
245 res = func(bs, txn, &msg, &reply);
271 death->func(bs, death->ptr);
372 void binder_loop(struct binder_state *bs, binder_handler func) argument
397 res = binder_parse(bs, 0, (uintptr_t) readbuf, bwr.read_consumed, func);
204 binder_parse(struct binder_state *bs, struct binder_io *bio, uintptr_t ptr, size_t size, binder_handler func) argument
/frameworks/native/include/binder/
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 DrsCpuScriptGroup2.h24 CPUClosure(const Closure* closure, RsdCpuScriptImpl* si, ExpandFuncTy func) : argument
25 mClosure(closure), mSi(si), mFunc(func) {}
H A DrsCpuScriptGroup.cpp60 ScriptGroupRootFunc_t func; local
61 func = (ScriptGroupRootFunc_t)sl->fnPtrs[ct];
116 func(kinfo, xstart, xend, ostep);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DProgramCache.cpp63 friend inline Formatter& operator<<(Formatter& to, FormaterManipFunc func) { argument
64 return (*func)(to);
/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/av/media/libstagefright/
H A DDataSource.cpp148 void DataSource::RegisterSniffer_l(SnifferFunc func) { argument
151 if (*it == func) {
156 gSniffers.push_back(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/compile/libbcc/lib/Renderscript/
H A DRSScriptGroupFusion.cpp49 Function* func = newModule->getFunction(functionName); local
52 newModule->materialize(func);
53 return func;
/frameworks/native/libs/binder/
H A DBinder.cpp140 object_cleanup_func func)
160 e->mObjects.attach(objectID, object, cleanupCookie, func);
138 attachObject( const void* objectID, void* object, void* cleanupCookie, object_cleanup_func func) argument
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
H A DDebug.cpp149 void printTypeCode(uint32_t typeCode, debugPrintFunc func, void* cookie) argument
154 func ? (*func)(cookie, buffer) : defaultPrintFunc(cookie, buffer);
160 debugPrintFunc func, void* cookie)
167 if (func == NULL) func = defaultPrintFunc;
174 if (singleLineBytesCutoff < 0) func(cookie, "\n");
175 func(cookie, "(NULL)");
180 if (singleLineBytesCutoff < 0) func(cookie, "\n");
181 func(cooki
157 printHexData(int32_t indent, const void *buf, size_t length, size_t bytesPerLine, int32_t singleLineBytesCutoff, size_t alignment, bool cStyle, debugPrintFunc func, void* cookie) argument
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DProgramStore.java346 * @param func function used for depth testing
350 public Builder setDepthFunc(DepthFunc func) { argument
351 mDepthFunc = func;
/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);
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Relocator.cpp44 : func(pFunc), name(pName), size(pSize) {}
45 ApplyFunctionType func; member in class:mcld::ApplyFunctionEntry
79 return ApplyFunctions[type].func(pRelocation, *this);
/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/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/base/services/core/java/com/android/server/display/
H A DColorFade.java688 private static void logEglError(String func) { argument
689 Slog.e(TAG, func + " failed: error " + EGL14.eglGetError(), new Throwable());
692 private static boolean checkGlErrors(String func) { argument
693 return checkGlErrors(func, true);
696 private static boolean checkGlErrors(String func, boolean log) { argument
701 Slog.e(TAG, func + " failed: error " + error, new Throwable());
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocator.cpp132 ApplyFunctionType func; member in struct:mcld::ApplyFunctionTriple
184 return ApplyFunctions[type].func(pRelocation, *this);
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Relocator.cpp141 X86_32ApplyFunctionType func; member in struct:mcld::X86_32ApplyFunctionTriple
286 return X86_32ApplyFunctions[type].func(pRelocation, *this);
1219 X86_64ApplyFunctionType func; member in struct:mcld::X86_64ApplyFunctionTriple
1245 return X86_64ApplyFunctions[type].func(pRelocation, *this);
/frameworks/native/cmds/dumpstate/
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...]

Completed in 912 milliseconds

123