HomeSort by relevance Sort by last modified time
    Searched defs:fn (Results 276 - 300 of 429) sorted by null

<<1112131415161718

  /external/toybox/toys/pending/
modprobe.c 447 char *fn, *options; local
450 fn = llist_popme(&m->dep);
451 m2 = get_mod(fn, 1);
472 printf(options ? "insmod %s %s\n" : "insmod %s\n", fn, options);
478 printf("%s is already loaded, skipping\n", fn);
484 rc = ins_mod(fn, options);
486 printf("loaded %s '%s': %s\n", fn, options, strerror(errno));
490 perror_msg("can't load module %s (%s)", m2->name, fn);
  /external/u-boot/arch/nds32/include/asm/
setup.h 159 #define __tagtable(tag, fn) \
160 static struct tagtable __tagtable_##fn __tag = { tag, fn }
181 void (*fn)(char **p); member in struct:early_params
184 #define __early_param(name, fn) \
185 static struct early_params __early_##fn __used \
186 __attribute__((__section__("__early_param"))) = { name, fn }
  /external/u-boot/arch/riscv/include/asm/
setup.h 164 #define __tagtable(tag, fn) \
165 static struct tagtable __tagtable_##fn __tag = { tag, fn }
186 void (*fn)(char **p); member in struct:early_params
189 #define __early_param(name, fn) \
190 static struct early_params __early_##fn __used \
191 __attribute__((__section__("__early_param"))) = { name, fn }
  /external/u-boot/fs/reiserfs/
reiserfs.c 868 char fn[PATH_MAX]; local
874 strcpy(fn, filename);
878 if (strcmp (fn, ".") != 0 && strcmp (fn, "..") != 0) {
882 printf(" %s\n", fn);
  /art/openjdkjvmti/
ti_stack.cc 79 fn(fn_),
99 fn(info);
113 FrameFn fn; member in struct:openjdkjvmti::GetStackTraceVisitor
139 FrameFn fn) {
140 return GetStackTraceVisitor<FrameFn>(thread_in, start, stop, fn);
881 template<typename Fn>
884 explicit MonitorInfoClosure(Fn handle_results)
    [all...]
  /bionic/tests/
dlfcn_test.cpp 216 int (*fn)(void);
217 fn = reinterpret_cast<int (*)(void)>(sym);
218 EXPECT_EQ(4, fn());
391 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "relo_test_get_answer")); local
392 ASSERT_TRUE(fn != nullptr) << dlerror();
393 ASSERT_EQ(1, fn());
425 fn_t fn, fn2; local
426 fn = reinterpret_cast<fn_t>(dlsym(RTLD_DEFAULT, "check_order_dlsym_get_answer"));
427 ASSERT_TRUE(fn != nullptr) << dlerror();
431 ASSERT_EQ(42, fn());
478 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "check_order_reloc_get_answer")); local
505 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "check_order_reloc_get_answer")); local
543 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "check_order_reloc_grandchild_get_answer")); local
589 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "check_order_reloc_nephew_get_answer")); local
616 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle2, "check_order_reloc_get_answer")); local
664 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "check_order_reloc_root_get_answer")); local
1226 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "get_function_version")); local
1236 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "get_function_version")); local
1246 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "get_function_version")); local
1256 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "get_function_version")); local
1266 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "versioned_function")); local
1278 fn_t fn = reinterpret_cast<fn_t>(dlvsym(handle, "versioned_function", "nonversion")); local
1284 fn_t fn = reinterpret_cast<fn_t>(dlvsym(handle, "versioned_function", "TESTLIB_V2")); local
1307 dlopen_b_fn fn = (dlopen_b_fn)dlsym(handle, "dlopen_b"); local
1322 dlopen_b_fn fn = (dlopen_b_fn)dlsym(handle, "dlopen_b"); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_sys_settrace.py 290 def fn(*args): function in function:TraceTestCase.set_and_retrieve_func
293 sys.settrace(fn)
295 assert sys.gettrace() is fn
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_lsprof.c 168 PyCFunctionObject *fn; local
176 fn = (PyCFunctionObject *)obj;
178 if (fn->m_self == NULL) {
180 PyObject *mod = fn->m_module;
198 fn->m_ml->ml_name);
201 fn->m_ml->ml_name);
207 PyObject *self = fn->m_self;
208 PyObject *name = PyString_FromString(fn->m_ml->ml_name);
222 fn->m_ml->ml_name);
  /external/Microsoft-GSL/tests/
multi_span_tests.cpp 712 void fn(const Bounds&) function
722 fn(av.bounds());
    [all...]
  /external/autotest/client/site_tests/security_SeccompSyscallFilters/src/
test_harness.h 221 { name: "global." #test_name, fn: &test_name, termsig: _signal }; \
278 fn: &wrapper_##fixture_name##_##test_name, \
383 void (*fn)(struct __test_metadata *); member in struct:__test_metadata
443 t->fn(t);
  /external/bcc/src/cc/
bpf_module.cc 352 Function *fn = local
354 auto arg_it = fn->arg_begin();
362 BasicBlock *label_entry = BasicBlock::Create(*ctx_, "entry", fn);
412 Function *fn = local
414 auto arg_it = fn->arg_begin();
425 BasicBlock *label_entry = BasicBlock::Create(*ctx_, "entry", fn);
497 for (auto fn = mod_->getFunctionList().begin(); fn != mod_->getFunctionList().end(); ++fn)
498 if (!fn->hasFnAttribute(Attribute::NoInline)
    [all...]
  /external/blktrace/
blkiomon.c 68 char *fn; member in struct:output
110 if (!debug.fn)
134 if (!debug.fn)
239 if (!binary.fn)
249 fprintf(stderr, "blkiomon: could not write to %s\n", binary.fn);
251 binary.fn = NULL;
433 if (!drvdata.fn)
445 fprintf(stderr, "blkiomon: could not write to %s\n", drvdata.fn);
447 drvdata.fn = NULL;
530 if (!out->fn)
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p5.cpp 464 int fn() { function in namespace:PR26017
  /external/clang/test/SemaCXX/
new-delete.cpp 450 void fn() { function in namespace:r150682
  /external/clang/test/SemaTemplate/
instantiate-local-class.cpp 121 F *fn; member in struct:PR17139::B
122 void foo() const { fn(); }
  /external/deqp/external/openglcts/modules/gles31/
es31cExplicitUniformLocationTest.cpp 772 SubroutineFunctionSet(UniformValueGenerator& generator, size_t count = 0) : fn(count, SubroutineFunction(generator))
778 fn.push_back(_fn);
793 std::vector<SubroutineFunction> fn; member in class:glcts::__anon18774::SubroutineFunctionSet
827 embeddedUIntUniform.uValues[i] = static_cast<GLint>(embeddedUIntUniform.uValues[i] % functions.fn.size());
853 embeddedUIntUniform.uValues[i] = static_cast<GLint>(embeddedUIntUniform.uValues[i] % functions.fn.size());
894 return functions.fn[embeddedUIntUniform.uValues[arrayElem]];
992 for (size_t fn = 0; fn < subroutineUniforms[i].functions.fn.size(); fn++
    [all...]
  /external/google-benchmark/test/
output_test_helper.cc 177 : TestCase(rx), fn(fn_) {}
178 ResultsCheckFn fn; member in struct:internal::ResultsChecker::PatternAndFn
185 void Add(const std::string& entry_pattern, ResultsCheckFn fn);
204 void ResultsChecker::Add(const std::string& entry_pattern, ResultsCheckFn fn) {
205 check_patterns.emplace_back(entry_pattern, fn);
245 p.fn(r);
293 size_t AddChecker(const char* bm_name, ResultsCheckFn fn) {
295 rc.Add(bm_name, fn);
  /external/libaom/libaom/aom/internal/
aom_codec_internal.h 169 aom_codec_control_fn_t fn; member in struct:aom_codec_ctrl_fn_map
  /external/libaom/libaom/av1/encoder/
firstpass.c 160 const aom_variance_fn_t fn = get_block_variance_fn(bsize); local
161 fn(src->buf, src->stride, ref->buf, ref->stride, &sse);
200 const aom_variance_fn_t fn = highbd_get_block_variance_fn(bsize, bd); local
201 fn(src->buf, src->stride, ref->buf, ref->stride, &sse);
  /external/libcxx/utils/google-benchmark/test/
output_test_helper.cc 177 : TestCase(rx), fn(fn_) {}
178 ResultsCheckFn fn; member in struct:internal::ResultsChecker::PatternAndFn
185 void Add(const std::string& entry_pattern, ResultsCheckFn fn);
204 void ResultsChecker::Add(const std::string& entry_pattern, ResultsCheckFn fn) {
205 check_patterns.emplace_back(entry_pattern, fn);
245 p.fn(r);
293 size_t AddChecker(const char* bm_name, ResultsCheckFn fn) {
295 rc.Add(bm_name, fn);
  /external/libese/third_party/NXPNFC_P61_JCOP_Kit/src/
Ala.cpp 92 static const char fn [] = "Ala_initialize"; local
94 ALOGD ("%s: enter", fn);
103 ALOGD("%s: Memory allocation failed", fn);
118 ALOGD("%s: AID data file does not exists", fn);
134 ALOGE ("%s: exit: Error during read AID data", fn);
151 ALOGD ("%s: exit", fn);
167 static const char fn [] = "Ala_finalize"; local
168 ALOGD ("%s: enter", fn);
176 ALOGD ("%s: exit", fn);
195 static const char fn [] = "Perform_ALA" local
246 static const char fn [] = "GetJsbl_Certificate_ID"; local
284 static const char fn[] = "JsblCerId_seq_handler"; local
319 static const char fn [] = "GetLs_Version"; local
353 static const char fn [] = "GetLs_Version"; local
388 static const char fn[] = "GetVer_seq_handler"; local
423 static const char fn[] = "ls_GetStatus_seqhandler"; local
463 static const char fn[] = "ALA_update_seq_handler"; local
523 static const char fn[] = "ALA_OpenChannel"; local
593 static const char fn[] = "ALA_SelectAla"; local
716 static const char fn[] = "ALA_StoreData"; local
784 static const char fn [] = "ALA_loadapplet"; local
1066 static const char fn[] = "ALA_Check_KeyIdentifier"; local
1307 static const char fn[]="ALA_ReadScript"; local
1451 static const char fn [] = "ALA_SendtoEse"; local
1571 static const char fn [] = "ALA_SendtoAla"; local
1617 static const char fn [] = "ALA_CloseChannel"; local
1688 static const char fn [] = "ALA_ProcessResp"; local
1865 static const char fn[] = "Process_EseResponse"; local
1947 static const char fn[]="Process_SelectRsp"; local
    [all...]
  /external/libevent/
evmap.c 523 * fn(base, signum, evmap_io, arg), where fn is the user-provided
528 * If fn returns 0, continue on to the next signal. Otherwise, return the same
529 * value that fn returned.
536 evmap_io_foreach_fd_cb fn,
553 if ((r = fn(base, fd, ctx, arg)))
565 * call fn(base, signum, evmap_signal, arg), where fn is the user-provided
570 * If fn returns 0, continue on to the next signal. Otherwise, return the same
571 * value that fn returned
1007 event_base_foreach_event_cb fn; member in struct:evmap_foreach_event_helper
    [all...]
  /external/libpng/contrib/tools/
genpng.c 660 shape_fn_ptr fn = shape_defs[i].function[width != 0][f]; local
662 if (fn != NULL)
663 return fn;
  /external/libvpx/libvpx/vpx/internal/
vpx_codec_internal.h 172 vpx_codec_control_fn_t fn; member in struct:vpx_codec_ctrl_fn_map
  /external/libxml2/
SAX2.c 1539 xmlChar fn[50]; local
2112 xmlChar fn[50]; local
    [all...]

Completed in 782 milliseconds

<<1112131415161718