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

12

/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/compile/libbcc/lib/Renderscript/
H A DRSExecutable.cpp89 // ALOGW("RS export func at entry #%u named %s cannot be found in the result"
178 void *func = mLoader->getSymbolAddress(func_name); local
181 if (func == NULL) {
186 reinterpret_cast<const uint8_t *>(func), func_size);
/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.c202 uintptr_t ptr, size_t size, binder_handler func)
234 if (func) {
242 res = func(bs, txn, &msg, &reply);
268 death->func(bs, death->ptr);
369 void binder_loop(struct binder_state *bs, binder_handler func) argument
394 res = binder_parse(bs, 0, (uintptr_t) readbuf, bwr.read_consumed, func);
201 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/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.cpp603 void RS::setErrorHandler(ErrorHandlerFunc_t func) { argument
604 mErrorFunc = func;
607 void RS::setMessageHandler(MessageHandlerFunc_t func) { argument
608 mMessageFunc = func;
/frameworks/av/media/libstagefright/
H A DDataSource.cpp146 void DataSource::RegisterSniffer_l(SnifferFunc func) { argument
149 if (*it == func) {
154 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/mclinker/lib/Target/AArch64/
H A DAArch64Relocator.cpp44 : func(pFunc), name(pName), size(pSize) { }
45 ApplyFunctionType func; member in class:ApplyFunctionEntry
81 return ApplyFunctions[type].func(pRelocation, *this);
/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);
288 object_cleanup_func func)
292 mObjects.attach(objectID, object, cleanupCookie, func);
43 attach( const void* objectID, void* object, void* cleanupCookie, IBinder::object_cleanup_func func) argument
286 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/rs/cpu_ref/
H A DrsCpuScriptGroup.cpp61 ScriptGroupRootFunc_t func; local
62 func = (ScriptGroupRootFunc_t)sl->fnPtrs[ct];
100 func(p, xstart, xend, istep, ostep);
/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/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.java670 private static void logEglError(String func) { argument
671 Slog.e(TAG, func + " failed: error " + EGL14.eglGetError(), new Throwable());
674 private static boolean checkGlErrors(String func) { argument
675 return checkGlErrors(func, true);
678 private static boolean checkGlErrors(String func, boolean log) { argument
683 Slog.e(TAG, func + " failed: error " + error, new Throwable());
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocator.cpp133 ApplyFunctionType func; member in struct:ApplyFunctionTriple
182 return ApplyFunctions[type].func(pRelocation, *this);
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Relocator.cpp158 X86_32ApplyFunctionType func; member in struct:X86_32ApplyFunctionTriple
313 return X86_32ApplyFunctions[type].func(pRelocation, *this);
1275 X86_64ApplyFunctionType func; member in struct:X86_64ApplyFunctionTriple
1304 return X86_64ApplyFunctions[type].func(pRelocation, *this);
/frameworks/native/cmds/dumpstate/
H A Dutils.c56 void for_each_userid(void (*func)(int), const char *header) { argument
61 func(0);
73 func(userid);
114 for_each_pid_func *func = arg; local
115 func(pid, cmdline);
118 void for_each_pid(for_each_pid_func func, const char *header) { argument
119 __for_each_pid(for_each_pid_helper, header, func);
126 for_each_tid_func *func = arg; local
135 func(pid, pid, cmdline);
164 func(pi
170 for_each_tid(for_each_tid_func func, const char *header) argument
[all...]
/frameworks/native/cmds/installd/
H A Dinstalld.c161 int (*func)(char **arg, char reply[REPLY_MAX]); member in struct:cmdinfo
267 ret = cmds[i].func(arg + 1, reply);
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.cpp556 int32_t sessionID, int32_t cseq, HandleRTSPResponseFunc func) {
560 mResponseHandlers.add(id, func);
1076 HandleRTSPResponseFunc func = mResponseHandlers.valueAt(index); local
1079 status_t err = (this->*func)(sessionID, data);
555 registerResponseHandler( int32_t sessionID, int32_t cseq, HandleRTSPResponseFunc func) argument

Completed in 480 milliseconds

12