Searched defs:func (Results 1 - 25 of 57) 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/base/tools/aapt2/
H A DFlags.cpp30 auto func = [value](const StringPiece& arg) -> bool { local
35 mFlags.push_back(Flag{ name.toString(), description.toString(), func, true, 1, false});
41 auto func = [value](const StringPiece& arg) -> bool { local
46 mFlags.push_back(Flag{ name.toString(), description.toString(), func, true, 1, false });
52 auto func = [value](const StringPiece& arg) -> bool { local
57 mFlags.push_back(Flag{ name.toString(), description.toString(), func, false, 1, false });
63 auto func = [value](const StringPiece& arg) -> bool { local
68 mFlags.push_back(Flag{ name.toString(), description.toString(), func, false, 1, false });
74 auto func = [value](const StringPiece& arg) -> bool { local
79 mFlags.push_back(Flag{ name.toString(), description.toString(), func, fals
[all...]
/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.c217 uintptr_t ptr, size_t size, binder_handler func)
249 if (func) {
257 res = func(bs, txn, &msg, &reply);
287 death->func(bs, death->ptr);
388 void binder_loop(struct binder_state *bs, binder_handler func) argument
413 res = binder_parse(bs, 0, (uintptr_t) readbuf, bwr.read_consumed, func);
216 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.cpp277 void RS::setErrorHandler(ErrorHandlerFunc_t func) { argument
278 mErrorFunc = func;
281 void RS::setMessageHandler(MessageHandlerFunc_t func) { argument
282 mMessageFunc = func;
/frameworks/av/media/libstagefright/
H A DDataSource.cpp150 void DataSource::RegisterSniffer_l(SnifferFunc func) { argument
153 if (*it == func) {
158 gSniffers.push_back(func);
/frameworks/base/libs/hwui/renderthread/
H A DCanvasContext.h167 ANDROID_API void enqueueFrameWork(std::function<void()>&& func);
238 std::function<void()> func; member in struct:android::uirenderer::renderthread::CanvasContext::FuncTask
H A DCanvasContext.cpp775 t->func();
780 void CanvasContext::enqueueFrameWork(std::function<void()>&& func) { argument
785 task->func = 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.cpp44 Function* func = newModule->getFunction(functionName); local
47 newModule->materialize(func);
48 return func;
/frameworks/native/libs/binder/
H A DBinder.cpp158 object_cleanup_func func)
175 e->mObjects.attach(objectID, object, cleanupCookie, func);
156 attachObject( const void* objectID, void* object, void* cleanupCookie, object_cleanup_func func) argument
H A DBpBinder.cpp46 IBinder::object_cleanup_func func)
51 e.func = func;
80 if (e.func != NULL) {
81 e.func(mObjects.keyAt(i), e.object, e.cleanupCookie);
288 object_cleanup_func func)
292 mObjects.attach(objectID, object, cleanupCookie, func);
44 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/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/compile/mclinker/lib/Target/AArch64/
H A DAArch64Relocator.cpp44 : func(pFunc), name(pName), size(pSize) {}
45 ApplyFunctionType func; member in class:mcld::ApplyFunctionEntry
81 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/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);

Completed in 8407 milliseconds

123