/external/openssl/crypto/dso/ |
dso_err.c | 68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_DSO,func,0)
|
/external/openssl/crypto/ocsp/ |
ocsp_err.c | 68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_OCSP,func,0)
|
/external/openssl/crypto/pkcs12/ |
pk12err.c | 68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_PKCS12,func,0)
|
/external/speex/libspeex/ |
speex_callbacks.c | 51 if (callback->func) 53 return callback->func(bits, state, callback->data);
|
/external/webkit/WebKitTools/Scripts/webkitpy/ |
mock.py | 220 def __call__(self, func):
221 if hasattr(func, 'patchings'):
222 func.patchings.append(self)
223 return func
234 return func(*args, **keywargs)
240 patched.__name__ = func.__name__
241 patched.compat_co_firstlineno = getattr(func, "compat_co_firstlineno",
242 func.func_code.co_firstlineno)
|
/frameworks/base/cmds/servicemanager/ |
binder.h | 50 void (*func)(struct binder_state *bs, void *ptr); member in struct:binder_death 95 void binder_loop(struct binder_state *bs, binder_handler func);
|
/frameworks/base/media/libstagefright/codecs/aacenc/basic_op/ |
typedefs.h | 163 #define ADD_PREFIX(func) LINK0(PREFIX, _, func)
|
/frameworks/base/tools/localize/ |
XLIFFFile.h | 54 void Filter(bool (*func)(const string&,const TransUnit&,void*), void* cookie); 55 void Map(void (*func)(const string&,TransUnit*,void*), void* cookie);
|
/external/bluetooth/glib/glib/ |
gtestutils.h | 176 const char *func, 182 const char *func, 187 const char *func, 192 const char *func, 200 const char *func, 209 const char *func,
|
gthread.h | 66 GThreadFunc func; member in struct:_GThread 98 void (*thread_create) (GThreadFunc func, 217 #define g_thread_create(func, data, joinable, error) \ 218 (g_thread_create_full (func, data, 0, joinable, FALSE, \ 221 GThread* g_thread_create_full (GThreadFunc func, 324 gpointer g_once_impl (GOnce *once, GThreadFunc func, gpointer arg); 327 # define g_once(once, func, arg) g_once_impl ((once), (func), (arg)) 329 # define g_once(once, func, arg) \ 332 g_once_impl ((once), (func), (arg)) [all...] |
gmain.h | 73 GSourceFunc *func, 147 GPollFunc func); 195 GSourceFunc func, 249 #define g_main_set_poll_func(func) g_main_context_set_poll_func (NULL, func)
|
/external/ipsec-tools/src/racoon/ |
schedule.c | 101 if (p->func != NULL) 102 (p->func)(p->param); 127 sched_new(tick, func, param) 129 void (*func) __P((void *)); 140 new->func = func;
|
/external/kernel-headers/original/linux/ |
interrupt.h | 268 void (*func)(unsigned long); member in struct:tasklet_struct 272 #define DECLARE_TASKLET(name, func, data) \ 273 struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(0), func, data } 275 #define DECLARE_TASKLET_DISABLED(name, func, data) \ 276 struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(1), func, data } 352 void (*func)(unsigned long), unsigned long data);
|
/external/openssl/crypto/bn/asm/ |
via-mont.pl | 87 $func="bn_mul_mont_padlock"; 110 &function_begin($func); 238 &function_end($func);
|
/external/svox/pico/lib/ |
picodbg.c | 339 const char *func, const char *msg) 386 if (strlen(func) > 0) { 387 sprintf(cb, "%-18s", func); 409 void picodbg_assert(const char *file, int line, const char *func, const char *expr) 411 if (strlen(func) > 0) { 413 expr, picodbg_fileTitle(file), func, line);
|
/dalvik/vm/ |
Native.c | 74 void* func; local 91 func = dvmLookupInternalNativeMethod(method); 92 if (func != NULL) { 105 DalvikBridgeFunc dfunc = (DalvikBridgeFunc) func; 112 func = lookupSharedLibMethod(method); 113 if (func != NULL) { 115 dvmUseJNIBridge((Method*) method, func); 429 OnLoadFunc func = vonLoad; local 435 version = (*func)(gDvm.vmList, NULL); 697 void* func = NULL local [all...] |
/external/v8/test/mjsunit/ |
debug-backtrace.js | 115 assertEquals("f", response.lookup(frames[0].func.ref).name); 117 assertEquals("", response.lookup(frames[1].func.ref).name); 118 assertEquals("m", response.lookup(frames[1].func.ref).inferredName); 120 assertEquals("g", response.lookup(frames[2].func.ref).name); 122 assertEquals("", response.lookup(frames[3].func.ref).name); 138 assertEquals("", response.lookup(frames[0].func.ref).name); 139 assertEquals("m", response.lookup(frames[0].func.ref).inferredName); 141 assertEquals("g", response.lookup(frames[1].func.ref).name); 156 assertEquals("g", response.lookup(frames[0].func.ref).name); 158 assertEquals("", response.lookup(frames[1].func.ref).name) [all...] |
/external/chromium/third_party/icu/source/i18n/ |
astro.cpp | 729 SunTimeAngleFunc func; local 730 return timeOfAngle( func, 755 RiseSetCoordFunc func; local 756 double t = riseOrSet(func, 1239 MoonTimeAngleFunc func; local 1274 MoonRiseSetCoordFunc func; local [all...] |
/external/icu4c/i18n/ |
astro.cpp | 729 SunTimeAngleFunc func; local 730 return timeOfAngle( func, 755 RiseSetCoordFunc func; local 756 double t = riseOrSet(func, 1239 MoonTimeAngleFunc func; local 1274 MoonRiseSetCoordFunc func; local [all...] |
/external/openssl/crypto/ |
cryptlib.c | 378 void CRYPTO_set_dynlock_create_callback(struct CRYPTO_dynlock_value *(*func) 381 dynlock_create_callback=func; 384 void CRYPTO_set_dynlock_lock_callback(void (*func)(int mode, 387 dynlock_lock_callback=func; 390 void CRYPTO_set_dynlock_destroy_callback(void (*func) 393 dynlock_destroy_callback=func; 409 void CRYPTO_set_locking_callback(void (*func)(int mode,int type, 412 locking_callback=func; 415 void CRYPTO_set_add_lock_callback(int (*func)(int *num,int mount,int type, 418 add_lock_callback=func; [all...] |
/external/dbus/dbus/ |
dbus-internals.c | 823 * @param func function the assertion is in 830 const char *func) 835 _dbus_getpid (), condition_text, file, line, func); 865 DBusTestMemoryFunction func, 878 if (!(* func) (data)) 898 * @param func function to call 904 DBusTestMemoryFunction func, 918 if (!(* func) (data)) 946 if (!run_failing_each_malloc (approx_mallocs, description, func, data))
|
/frameworks/base/libs/binder/ |
BpBinder.cpp | 45 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);
|
/external/bluetooth/hcidump/parser/ |
capi.c | 114 static char *func2str(uint16_t func) 116 switch (func) { 486 uint16_t sel, func, info; local 494 func = CAPI_U16(frm); 497 func = 0; 505 printf("Function: %d (%s)\n", func, func2str(func)); 509 switch (func) { 536 switch (func) { 605 printf("Function: %d\n", func); 751 uint32_t ctr, class, func; local [all...] |
/external/chromium/base/ |
path_service.cc | 40 PathService::ProviderFunc func; member in struct:__anon2201::Provider 176 if (provider->func(key, &path)) 237 void PathService::RegisterProvider(ProviderFunc func, int key_start, 258 p->func = func;
|
/external/chromium/third_party/icu/source/test/threadtest/ |
threadtest.cpp | 53 void ThreadFuncs::startThread(ThreadFunc func, void *param) 56 x = _beginthread(func, 0x10000, param); 110 void ThreadFuncs::startThread(ThreadFunc func, void *param) 117 x = pthread_create( &tId, pthread_attr_default, (pthreadfunc)func, param); 121 x = pthread_create( &tId, &attr, (pthreadfunc)func, param);
|