/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
names.c | 143 void (*fn)(const EVP_CIPHER *ciph, member in struct:doall_cipher 151 dc->fn(NULL, nm->name, nm->data, dc->arg); 153 dc->fn((const EVP_CIPHER *)nm->data, nm->name, NULL, dc->arg); 156 void EVP_CIPHER_do_all(void (*fn)(const EVP_CIPHER *ciph, 160 dc.fn = fn; 165 void EVP_CIPHER_do_all_sorted(void (*fn)(const EVP_CIPHER *ciph, 169 dc.fn = fn; 177 void (*fn)(const EVP_MD *ciph member in struct:doall_md [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
testutil.cc | 85 extern "C" void RunThread(void (*fn)()) { 86 (*fn)(); 89 extern "C" void RunManyThreads(void (*fn)(), int count) { 90 // I guess the best we can do is run fn sequentially, 'count' times 92 (*fn)(); 95 extern "C" void RunManyThreadsWithId(void (*fn)(int), int count, int) { 97 (*fn)(i); // stacksize doesn't make sense in a non-threaded context 110 (**static_cast<void (**)()>(ptr_to_ptr_to_fn))(); // runs fn 116 (*fn_and_id->ptr_to_function)(fn_and_id->id); // runs fn 120 void RunManyThreads(void (*fn)(), int count) [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
testutil.cc | 85 extern "C" void RunThread(void (*fn)()) { 86 (*fn)(); 89 extern "C" void RunManyThreads(void (*fn)(), int count) { 90 // I guess the best we can do is run fn sequentially, 'count' times 92 (*fn)(); 95 extern "C" void RunManyThreadsWithId(void (*fn)(int), int count, int) { 97 (*fn)(i); // stacksize doesn't make sense in a non-threaded context 110 (**static_cast<void (**)()>(ptr_to_ptr_to_fn))(); // runs fn 116 (*fn_and_id->ptr_to_function)(fn_and_id->id); // runs fn 120 void RunManyThreads(void (*fn)(), int count) [all...] |
/external/openssl/crypto/evp/ |
names.c | 143 void (*fn)(const EVP_CIPHER *ciph, member in struct:doall_cipher 151 dc->fn(NULL, nm->name, nm->data, dc->arg); 153 dc->fn((const EVP_CIPHER *)nm->data, nm->name, NULL, dc->arg); 156 void EVP_CIPHER_do_all(void (*fn)(const EVP_CIPHER *ciph, 160 dc.fn = fn; 165 void EVP_CIPHER_do_all_sorted(void (*fn)(const EVP_CIPHER *ciph, 169 dc.fn = fn; 177 void (*fn)(const EVP_MD *ciph member in struct:doall_md [all...] |
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/main/ |
dispatch.h | 53 #define SET_by_offset(disp, offset, fn) \ 57 /* __func__, __LINE__, disp, offset, # fn); */ \ 61 ( (_glapi_proc *) (disp) )[offset] = (_glapi_proc) fn; \ [all...] |
/external/valgrind/main/memcheck/tests/ |
wrap2.c | 19 OrigFn fn; local 20 VALGRIND_GET_ORIG_FN(fn); 22 CALL_FN_W_W(r, fn, n);
|
wrap5.c | 54 OrigFn fn; local 55 VALGRIND_GET_ORIG_FN(fn); 58 CALL_FN_W_W(r, fn, n); 68 OrigFn fn; local 69 VALGRIND_GET_ORIG_FN(fn); 72 CALL_FN_W_W(r, fn, n);
|
/external/qemu/distrib/sdl-1.2.15/src/video/x11/ |
SDL_x11dyn.c | 66 void *fn = NULL; local 71 fn = SDL_LoadFunction(x11libs[i].lib, fnname); 72 if (fn != NULL) 78 if (fn != NULL) 79 printf("X11: Found '%s' in %s (%p)\n", fnname, x11libs[i].libname, *fn); 84 if (fn == NULL) 87 return fn; 93 #define SDL_X11_SYM(rc,fn,params,args,ret) \ 94 static rc (*p##fn) params = NULL; \ 95 rc fn params { ret p##fn args ; [all...] |
/external/chromium_org/remoting/webapp/ |
event_handlers.js | 58 /** @type {Array.<{event: string, id: string, fn: function(Event):void}>} */ 60 { event: 'click', id: 'sign-out', fn: remoting.signOut }, 61 { event: 'click', id: 'toolbar-disconnect', fn: remoting.disconnect }, 63 fn: remoting.sendCtrlAltDel }, 65 fn: remoting.sendPrintScreen }, 66 { event: 'click', id: 'auth-button', fn: doAuthRedirect }, 67 { event: 'click', id: 'share-button', fn: remoting.tryShare }, 68 { event: 'click', id: 'access-mode-button', fn: goEnterAccessCode }, 69 { event: 'click', id: 'cancel-share-button', fn: remoting.cancelShare }, 70 { event: 'click', id: 'stop-sharing-button', fn: remoting.cancelShare } [all...] |
/external/clang/test/SemaCXX/ |
deleted-function.cpp | 5 void fn() = delete; // expected-note {{candidate function has been explicitly deleted}} 19 void fn() = delete; // expected-note {{function has been explicitly marked deleted here}} 27 fn(); // expected-error {{call to deleted function 'fn'}} 33 d->fn(); // expected-error {{attempt to use a deleted function}}
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_lrint.c | 36 #define fn lrint macro 47 fn(type x) function
|
s_nearbyint.c | 44 #define DECL(type, fn, rint) \ 46 fn(type x) \
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InjectedScriptHost.idl | 49 [Custom] void debugFunction(any fn); 50 [Custom] void undebugFunction(any fn); 51 [Custom] void monitorFunction(any fn); 52 [Custom] void unmonitorFunction(any fn);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
urlfetcher_mock.py | 41 f, fn = self._filesystem.open_binary_tempfile('mockfetcher') 44 return fn
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prtpool.h | 68 PR_QueueJob(PRThreadPool *tpool, PRJobFn fn, void *arg, PRBool joinable); 73 PRJobFn fn, void * arg, PRBool joinable); 78 PRJobFn fn, void * arg, PRBool joinable); 83 PRJobFn fn, void * arg, PRBool joinable); 88 const PRNetAddr *addr, PRJobFn fn, void * arg, PRBool joinable); 93 PRJobFn fn, void * arg, PRBool joinable);
|
/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
StartupConfig.cpp | 94 static const char fn [] = "StartupConfig::append"; local 97 ALOGE ("%s: exceed max length", fn); 100 ALOGD ("%s: try append %u bytes", fn, (uint8_string::size_type) (newContent[0])); 105 ALOGD ("%s: new size %u bytes", fn, mBuffer[0]); 124 static const char fn [] = "StartupConfig::append"; local 127 ALOGE ("%s: invalid length at newContent[0]", fn);
|
/external/chromium_org/sync/internal_api/public/util/ |
weak_handle.h | 117 const base::Closure& fn) const; 147 void (U::*fn)(void)) const { 150 Bind(&WeakHandleCore::template DoCall0<U>, this, fn)); 155 void (U::*fn)(A1), 160 this, fn, a1)); 165 void (U::*fn)(A1, A2), 171 this, fn, a1, a2)); 176 void (U::*fn)(A1, A2, A3), 183 this, fn, a1, a2, a3)); 188 void (U::*fn)(A1, A2, A3, A4) [all...] |
/external/valgrind/main/helgrind/tests/ |
tc06_two_races_xml.stderr.exp | 52 <fn>pthread_create_WRK</fn> 60 <fn>pthread_create@*</fn> 68 <fn>main</fn> 88 <fn>main</fn> 102 <fn>child_fn</fn> [all...] |
/packages/apps/Nfc/nci/jni/ |
PowerSwitch.cpp | 100 static const char fn [] = "PowerSwitch::initialize"; local 105 ALOGD ("%s: level=%s (%u)", fn, powerLevelToString(level), level); 108 ALOGD ("%s: desired screen-off state=%d", fn, mDesiredScreenOffPowerState); 123 ALOGE ("%s: not handled", fn); 161 static const char fn [] = "PowerSwitch::setLevel"; local 166 ALOGD ("%s: level=%s (%u)", fn, powerLevelToString(newLevel), newLevel); 175 ALOGE ("%s: unknown power level", fn); 186 ALOGD("%s: wait for deactivation", fn); 211 ALOGE ("%s: not handled", fn); 276 static const char fn [] = "PowerSwitch::setPowerOffSleepState" local 414 static const char fn [] = "PowerSwitch::abort"; local 434 static const char fn [] = "PowerSwitch::deviceManagementCallback"; local [all...] |
RouteDataSet.cpp | 121 static const char fn [] = "RouteDataSet::initialize"; local 122 ALOGD ("%s: enter", fn); 126 ALOGD ("%s: exit; return=true", fn); 142 static const char fn [] = "RouteDataSet::deleteDatabase"; local 143 ALOGD ("%s: default db size=%u; sec elem db size=%u", fn, mDefaultRouteDatabase.size(), mSecElemRouteDatabase.size()); 167 static const char fn [] = "RouteDataSet::import"; local 168 ALOGD ("%s: enter", fn); 180 ALOGD ("%s: fail parse", fn); 187 ALOGE ("%s: fail root element", fn); 190 ALOGD ("%s: root=%s", fn, node1->name) 251 static const char fn [] = "RouteDataSet::saveToFile"; local 294 static const char fn [] = "RouteDataSet::loadFromFile"; local 336 static const char fn [] = "RouteDataSet::importProtocolRoute"; local 408 static const char fn [] = "RouteDataSet::importTechnologyRoute"; local 476 static const char fn [] = "RouteDataSet::deleteFile"; local 519 static const char fn [] = "RouteDataSet::printDiagnostic"; local [all...] |
NfcTag.cpp | 143 static const char fn [] = "NfcTag::setDeactivationState"; local 148 ALOGD ("%s: state=%u", fn, mActivationState); 163 static const char fn [] = "NfcTag::setActivationState"; local 166 ALOGD ("%s: state=%u", fn, mActivationState); 239 static const char fn [] = "NfcTag::IsSameKovio"; local 240 ALOGD ("%s: enter", fn); 275 ALOGD ("%s: exit, is same Kovio=%d", fn, rVal); 292 static const char fn [] = "NfcTag::discoverTechnologies (activation)"; local 293 ALOGD ("%s: enter", fn); 371 ALOGD ("%s: Kovio", fn); 403 static const char fn [] = "NfcTag::discoverTechnologies (discovery)"; local 517 static const char fn [] = "NfcTag::createNativeNfcTag"; local 588 static const char fn [] = "NfcTag::fillNativeNfcTagMembers1"; local 640 static const char fn [] = "NfcTag::fillNativeNfcTagMembers2"; local 664 static const char fn [] = "NfcTag::fillNativeNfcTagMembers3"; local 785 static const char fn [] = "NfcTag::fillNativeNfcTagMembers4"; local 918 static const char fn [] = "NfcTag::fillNativeNfcTagMembers5"; local 996 static const char fn [] = "NfcTag::isP2pDiscovered"; local 1025 static const char fn [] = "NfcTag::selectP2p"; local 1075 static const char fn [] = "NfcTag::resetTechnologies"; local 1097 static const char fn [] = "NfcTag::selectFirstTag"; local 1141 static const char fn [] = "NfcTag::getT1tMaxMessageSize"; local 1164 static const char fn [] = "NfcTag::calculateT1tMaxMessageSize"; local 1201 static const char fn [] = "NfcTag::isMifareUltralight"; local 1252 static const char fn [] = "NfcTag::isT2tNackResponse"; local 1295 static const char fn [] = "NfcTag::connectionEventHandler"; local 1401 static const char fn [] = "NfcTag::getTransceiveTimeout"; local 1425 static const char fn [] = "NfcTag::setTransceiveTimeout"; local [all...] |
/external/valgrind/main/helgrind/ |
hg_intercepts.c | 197 void*(*fn)(void*) = (void*(*)(void*))xargs[0]; 219 return (void*) fn( (void*)arg ); 236 OrigFn fn; local 239 VALGRIND_GET_ORIG_FN(fn); 255 CALL_FN_W_WWWW(ret, fn, thread,attr,mythread_wrapper,&xargs[0]); 314 OrigFn fn; local 315 VALGRIND_GET_ORIG_FN(fn); 320 CALL_FN_W_WW(ret, fn, thread,value_pointer); 412 OrigFn fn; local 413 VALGRIND_GET_ORIG_FN(fn); 449 OrigFn fn; local 478 OrigFn fn; local 522 OrigFn fn; local 563 OrigFn fn; local 602 OrigFn fn; local 652 OrigFn fn; local 734 OrigFn fn; local 831 OrigFn fn; local 883 OrigFn fn; local 931 OrigFn fn; local 995 OrigFn fn; local 1030 OrigFn fn; local 1067 OrigFn fn; local 1120 OrigFn fn; local 1168 OrigFn fn; local 1205 OrigFn fn; local 1250 OrigFn fn; local 1318 OrigFn fn; local 1364 OrigFn fn; local 1408 OrigFn fn; local 1456 OrigFn fn; local 1504 OrigFn fn; local 1558 OrigFn fn; local 1611 OrigFn fn; local 1685 OrigFn fn; local 1733 OrigFn fn; local 1784 OrigFn fn; local 1837 OrigFn fn; local 1887 OrigFn fn; local 1921 OrigFn fn; local 2040 OrigFn fn; local 2063 OrigFn fn; local 2088 OrigFn fn; local 2118 OrigFn fn; local 2158 OrigFn fn; local 2172 OrigFn fn; local [all...] |
/build/tools/ |
check_radio_versions.py | 40 key, fn = item.split(":", 1) 47 f = open(fn, "rb") 53 f = open(fn + ".sha1") 56 print "*** Error opening \"%s.sha1\"; can't verify %s" % (fn, key) 67 print "*** SHA-1 hash of \"%s\" doesn't appear in \"%s.sha1\"" % (fn, fn) 74 fn, versions[digest], key, sys.argv[1])
|
/bionic/tests/ |
signal_test.cpp | 22 template <typename Fn> 23 static void TestSigSet1(Fn fn) { 27 ASSERT_EQ(-1, fn(set_ptr)); 33 ASSERT_EQ(0, fn(&set)); 37 template <typename Fn> 38 static void TestSigSet2(Fn fn) { 42 ASSERT_EQ(-1, fn(set_ptr, SIGSEGV)); 63 ASSERT_EQ(-1, fn(&set, 0)) [all...] |
/external/kernel-headers/original/linux/ |
attribute_container.h | 42 int (*fn)(struct attribute_container *, 46 int (*fn)(struct attribute_container *, 50 void (*fn)(struct attribute_container *, 54 int (*fn)(struct attribute_container *, 58 int (*fn)(struct attribute_container *,
|