/external/kernel-headers/original/linux/ |
smp.h | 54 int smp_call_function(void(*func)(void *info), void *info, int retry, int wait); 59 int on_each_cpu(void (*func) (void *info), void *info, int retry, int wait); 88 #define smp_call_function(func,info,retry,wait) (up_smp_call_function()) 89 #define on_each_cpu(func,info,retry,wait) \ 92 func(info); \
|
/external/llvm/test/MC/AsmParser/ |
directive_seh.s | 3 # CHECK: .seh_proc func 21 .globl func 22 .def func; .scl 2; .type 32; .endef 23 .seh_proc func 24 func: label
|
/external/qemu/ |
os-win32.c | 55 PollingFunc *func; member in struct:PollingEntry 62 int qemu_add_polling_cb(PollingFunc *func, void *opaque) 66 pe->func = func; 73 void qemu_del_polling_cb(PollingFunc *func, void *opaque) 78 if (pe->func == func && pe->opaque == opaque) { 91 WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1]; member in struct:WaitObjects 97 int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque) 104 w->func[w->num] = func [all...] |
arm-dis.c | 1636 fprintf_function func = info->fprintf_func; local 2130 fprintf_function func = info->fprintf_func; local 2225 fprintf_function func = info->fprintf_func; local 2679 fprintf_function func = info->fprintf_func; local 3039 fprintf_function func = info->fprintf_func; local 3315 fprintf_function func = info->fprintf_func; local [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
AbsPathChecker.java | 57 * @param func The function reference object. 60 public boolean visitFunction(ExpressionOwner owner, Function func) 62 if((func instanceof FuncCurrent) || 63 (func instanceof FuncExtFunction))
|
/external/chromium/base/ |
at_exit.cc | 37 void AtExitManager::RegisterCallback(AtExitCallbackType func, void* param) { 43 DCHECK(func); 46 g_top_manager->stack_.push(CallbackAndParam(func, param));
|
/external/clang/test/CodeGen/ |
mangle.c | 55 int func(void); 56 extern int func (void) __asm__ ("FUNC"); 58 // CHECK: @FUNC 59 int func(void) { function
|
/external/clang/test/Sema/ |
i-c-e.c | 38 void func(int x) function 42 case sizeof("loooong"): func(4); 43 case sizeof("\ploooong"): func(4);
|
/external/webkit/Source/WebKit/wx/ |
WebView.h | 560 #define wxWebViewLoadEventHandler(func) \ 561 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxWebViewLoadEventFunction, &func) 562 #define wxWebViewBeforeLoadEventHandler(func) \ 563 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxWebViewBeforeLoadEventFunction, &func) 564 #define wxWebViewNewWindowEventHandler(func) \ 565 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxWebViewNewWindowEventFunction, &func) 566 #define wxWebViewRightClickEventHandler(func) \ 567 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxWebViewRightClickEventFunction, &func) 568 #define wxWebViewConsoleMessageEventHandler(func) \ 569 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxWebViewConsoleMessageEventFunction, &func) [all...] |
/system/core/adb/ |
fdevent.h | 39 fdevent *fdevent_create(int fd, fd_func func, void *arg); 48 void fdevent_install(fdevent *fde, int fd, fd_func func, void *arg); 78 fd_func func; member in struct:fdevent
|
/external/strace/strace/linux/x86_64/ |
gentab.pl | 66 $func = $known{$name}; 68 $func = "printargs"; 70 print "\t{ $na,\t0,\t$func,\t\"$name\" }, /* $num */\n";
|
/external/freetype/src/base/ |
ftadvanc.c | 75 FT_Face_GetAdvancesFunc func; local 84 func = face->driver->clazz->get_advances; 85 if ( func && LOAD_ADVANCE_FAST_CHECK( flags ) ) 90 error = func( face, gindex, 1, flags, padvance ); 111 FT_Face_GetAdvancesFunc func; local 127 func = face->driver->clazz->get_advances; 128 if ( func && LOAD_ADVANCE_FAST_CHECK( flags ) ) 130 error = func( face, start, count, flags, padvances );
|
/external/icu4c/i18n/ |
ucln_in.c | 48 cleanupFunc *func) 54 gCleanupFunctions[type] = func;
|
/external/icu4c/io/ |
ucln_io.c | 49 cleanupFunc *func) 55 gCleanupFunctions[type] = func;
|
/external/ipsec-tools/src/racoon/ |
genlist.h | 62 /* Traverse the list and call 'func' for each entry. As long as func() returns 65 * further from genlist_foreach(). Optional 'arg' may be passed to func(), e.g. 67 void *genlist_foreach (struct genlist *head, genlist_func_t func, void *arg); 78 /* Free all storage associated with list at head using func to free any 80 void genlist_free (struct genlist *head, genlist_freedata_t func);
|
/external/openssl/crypto/buffer/ |
buf_err.c | 68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_BUF,func,0)
|
/external/openssl/crypto/comp/ |
comp_err.c | 68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_COMP,func,0)
|
/external/openssl/crypto/ |
cpt_err.c | 68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_CRYPTO,func,0)
|
/external/openssl/crypto/ecdh/ |
ech_err.c | 68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_ECDH,func,0)
|
/external/openssl/crypto/objects/ |
obj_err.c | 68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_OBJ,func,0)
|
/external/webkit/Source/WebCore/platform/efl/ |
SharedTimerEfl.cpp | 43 void setSharedTimerFiredFunction(void (*func)()) 45 _timerFunction = func;
|
/external/webrtc/src/system_wrappers/source/ |
thread_linux.h | 23 static ThreadWrapper* Create(ThreadRunFunction func, ThreadObj obj, 26 ThreadLinux(ThreadRunFunction func, ThreadObj obj, ThreadPriority prio,
|
/system/core/netcfg/ |
netcfg.c | 105 void *func; member in struct:__anon25842 120 int (*func)(char *a0) = _func; 121 return func(args[0]); 124 int (*func)(char *a0, char *a1) = _func; 125 return func(args[0], args[1]); 128 int (*func)(char *a0, char *a1, char *a2) = _func; 129 return func(args[0], args[1], args[2]); 170 if(call_func(CMDS[n].func, nargs, argv)) {
|
/bootable/bootloader/legacy/include/boot/ |
tags.h | 37 void (*func)(unsigned type, void *data, unsigned bytes, void *cookie); member in struct:tag_handler
|
/bootable/bootloader/legacy/libc/ |
malloc.c | 50 void func(unsigned n) function
|