Home
last modified time | relevance | path

Searched refs:func (Results 1 – 25 of 34) sorted by relevance

12

/third_party/ulib/jemalloc/test/unit/
A Dprof_active.c17 assert_b_eq(old, expected, "%s():%d: Unexpected %s value", func, line, in mallctl_bool_get()
23 const char *func, int line) in mallctl_bool_set() argument
31 "%s():%d: Unexpected mallctl failure reading/writing %s", func, in mallctl_bool_set()
33 assert_b_eq(old, old_expected, "%s():%d: Unexpected %s value", func, in mallctl_bool_set()
48 bool prof_active_new, const char *func, int line) in mallctl_prof_active_set_impl() argument
51 prof_active_new, func, line); in mallctl_prof_active_set_impl()
58 const char *func, int line) in mallctl_thread_prof_active_get_impl() argument
61 func, line); in mallctl_thread_prof_active_get_impl()
68 bool thread_prof_active_new, const char *func, int line) in mallctl_thread_prof_active_set_impl() argument
71 thread_prof_active_new, func, line); in mallctl_thread_prof_active_set_impl()
[all …]
A Dprof_thread_name.c8 mallctl_thread_name_get_impl(const char *thread_name_expected, const char *func, in mallctl_thread_name_get_impl() argument
18 func, line); in mallctl_thread_name_get_impl()
20 "%s():%d: Unexpected thread.prof.name value", func, line); in mallctl_thread_name_get_impl()
26 mallctl_thread_name_set_impl(const char *thread_name, const char *func, in mallctl_thread_name_set_impl() argument
32 func, line); in mallctl_thread_name_set_impl()
33 mallctl_thread_name_get_impl(thread_name, func, line); in mallctl_thread_name_set_impl()
/third_party/ulib/musl/src/exit/
A Datexit.c24 void (*func)(void*), *arg; in __funcs_on_exit() local
28 func = head->f[slot]; in __funcs_on_exit()
31 func(arg); in __funcs_on_exit()
52 int __cxa_atexit(void (*func)(void*), void* arg, void* dso) { in __cxa_atexit()
72 head->f[slot] = func; in __cxa_atexit()
102 int atexit(void (*func)(void)) { in atexit()
103 return __cxa_atexit(call, (void*)(uintptr_t)func, NULL); in atexit()
A Dat_quick_exit.c13 void (*func)(void); in __funcs_on_quick_exit() local
16 func = funcs[--count]; in __funcs_on_quick_exit()
18 func(); in __funcs_on_quick_exit()
24 int at_quick_exit(void (*func)(void)) { in at_quick_exit()
28 funcs[count++] = func; in at_quick_exit()
A D__cxa_thread_atexit.c13 void (*func)(void*); member
23 cur->func(cur->arg); in __tls_run_dtors()
28 int __cxa_thread_atexit_impl(void (*func)(void*), void* arg, void* dso) { in __cxa_thread_atexit_impl()
33 new_td->func = func; in __cxa_thread_atexit_impl()
A Dassert.c5 void __assert_fail(const char* expr, const char* file, int line, const char* func) { in __assert_fail() argument
6 fprintf(stderr, "Assertion failed: %s (%s: %s: %d)\n", expr, file, func, line); in __assert_fail()
/third_party/ulib/musl/src/thread/
A Dthrd_create.c6 static int thrd_create_internal(thrd_t* thr, thrd_start_t func, void* arg, const char* name) { in thrd_create_internal() argument
12 (void* (*)(void*))(uintptr_t)func, arg); in thrd_create_internal()
23 int thrd_create(thrd_t* thr, thrd_start_t func, void* arg) { in thrd_create() argument
24 return thrd_create_internal(thr, func, arg, NULL); in thrd_create()
/third_party/lib/acpica/source/include/acpica/platform/
A Dacefi.h134 UINT64 efi_call0(void *func);
135 UINT64 efi_call1(void *func, UINT64 arg1);
136 UINT64 efi_call2(void *func, UINT64 arg1, UINT64 arg2);
137 UINT64 efi_call3(void *func, UINT64 arg1, UINT64 arg2, UINT64 arg3);
138 UINT64 efi_call4(void *func, UINT64 arg1, UINT64 arg2, UINT64 arg3,
140 UINT64 efi_call5(void *func, UINT64 arg1, UINT64 arg2, UINT64 arg3,
142 UINT64 efi_call6(void *func, UINT64 arg1, UINT64 arg2, UINT64 arg3,
144 UINT64 efi_call7(void *func, UINT64 arg1, UINT64 arg2, UINT64 arg3,
146 UINT64 efi_call8(void *func, UINT64 arg1, UINT64 arg2, UINT64 arg3,
149 UINT64 efi_call9(void *func, UINT64 arg1, UINT64 arg2, UINT64 arg3,
[all …]
A Dacdragonflyex.h54 const char *func,
62 const char *func,
/third_party/uapp/dash/src/bltin/
A Dprintf.c61 #define PF(f, func) { \ argument
64 (void)printf(f, array[0], array[1], func); \
67 (void)printf(f, array[0], func); \
70 (void)printf(f, func); \
75 #define ASPF(sp, f, func) ({ \ argument
79 ret = xasprintf(sp, f, array[0], array[1], func); \
82 ret = xasprintf(sp, f, array[0], func); \
85 ret = xasprintf(sp, f, func); \
/third_party/ulib/uboringssl/include/openssl/
A Dthread.h124 void (*func)(int mode, int lock_num, const char *file, int line));
127 OPENSSL_EXPORT void CRYPTO_set_add_lock_callback(int (*func)(
153 OPENSSL_EXPORT void CRYPTO_set_id_callback(unsigned long (*func)(void));
/third_party/ulib/jemalloc/test/stress/
A Dmicrobench.c5 void (*func)(void)) in time_func()
10 func(); in time_func()
13 func(); in time_func()
/third_party/ulib/backtrace/
A Dstate.c95 backtrace_so_iterator *func, in backtrace_set_so_iterator() argument
98 state->so_iterator = func; in backtrace_set_so_iterator()
/third_party/ulib/musl/src/signal/
A Dsignal.c5 void (*signal(int sig, void (*func)(int)))(int) { in signal()
/third_party/uapp/dash/src/
A Dexec.h49 struct funcnode *func; member
A Dexec.c661 freefunc(cmdp->param.func); in delete_cmd_entry()
697 freefunc(cmdp->param.func); in addcmdentry()
710 defun(union node *func) in defun() argument
716 entry.u.func = copyfunc(func); in defun()
717 addcmdentry(func->ndefun.text, &entry); in defun()
A Dvar.c265 if (vp->func && (flags & VNOFUNC) == 0) in setvareq()
266 (*vp->func)(strchrnul(s, '=') + 1); in setvareq()
290 vp->func = NULL; in setvareq()
568 if (vp->func) in poplocalvars()
569 (*vp->func)(strchrnul(lvp->text, '=') + 1); in poplocalvars()
A Dvar.h59 void (*func)(const char *); member
A Deval.c905 if (evalfun(cmdentry.u.func, argc, argv, flags)) in evalcommand()
961 evalfun(struct funcnode *func, int argc, char **argv, int flags) in evalfun() argument
980 func->count++; in evalfun()
981 funcline = func->n.ndefun.linno; in evalfun()
989 evaltree(func->n.ndefun.body, flags & EV_TESTED); in evalfun()
995 freefunc(func); in evalfun()
/third_party/ulib/musl/include/
A Dsched.h65 #define __CPU_op_func_S(func, op) \ argument
66 static __inline void __CPU_##func##_S(size_t __size, cpu_set_t* __dest, \
/third_party/lib/acpica/source/os_specific/service_layers/
A Dosfuchsia.cpp56 ACPI_OSD_EXEC_CALLBACK func; member
515 task->func(task->ctx); in AcpiOsExecuteTask()
567 task->func = Function; in AcpiOsExecute()
1124 uint8_t func = static_cast<uint8_t>(PciId->Function); in AcpiOsReadWritePciConfiguration() local
1128 pci_bdf_t addr = {bus, dev, func}; in AcpiOsReadWritePciConfiguration()
1144 st = zx_pci_cfg_pio_rw(root_resource_handle, bus, dev, func, offset, in AcpiOsReadWritePciConfiguration()
/third_party/ulib/backtrace/include/backtrace/
A Dbacktrace.h108 backtrace_so_iterator *func,
/third_party/dev/ethernet/e1000/
A De1000_mac.c288 bus->func = (reg & E1000_STATUS_FUNC_MASK) >> E1000_STATUS_FUNC_SHIFT; in e1000_set_lan_id_multi_port_pcie()
306 bus->func = (status & E1000_STATUS_FUNC_MASK) in e1000_set_lan_id_multi_port_pci()
309 bus->func = 0; in e1000_set_lan_id_multi_port_pci()
323 bus->func = 0; in e1000_set_lan_id_single_port()
436 if (hw->bus.func == E1000_FUNC_1) in e1000_check_alt_mac_addr_generic()
438 if (hw->bus.func == E1000_FUNC_2) in e1000_check_alt_mac_addr_generic()
441 if (hw->bus.func == E1000_FUNC_3) in e1000_check_alt_mac_addr_generic()
965 nvm_offset = NVM_82580_LAN_FUNC_OFFSET(hw->bus.func); in e1000_set_default_fc_generic()
/third_party/ulib/jemalloc/bin/
A Djeprof.in2635 my $func = $symlist->[$j-2];
2642 $func = "$func (inline)";
2648 if ($func =~ m/Callback.*::Run$/) {
2650 $func = "Run#" . ShortIdFor($caller);
2654 push(@result, "$a $func $fileline");
2659 push(@result, "$func $fileline");
2662 if ($func eq '??') {
2665 push(@result, $func);
2993 my $func = '';
3016 my $func = $symbols->{$a}->[0];
[all …]
/third_party/tools/android/avb/
A Davbtool3846 sub_parser.set_defaults(func=self.version)
3857 sub_parser.set_defaults(func=self.extract_public_key)
3871 sub_parser.set_defaults(func=self.make_vbmeta_image)
3904 sub_parser.set_defaults(func=self.add_hash_footer)
3989 sub_parser.set_defaults(func=self.erase_footer)
4017 sub_parser.set_defaults(func=self.resize_image)
4030 sub_parser.set_defaults(func=self.info_image)
4047 sub_parser.set_defaults(func=self.verify_image)
4095 sub_parser.set_defaults(func=self.set_ab_metadata)
4171 sub_parser.set_defaults(func=self.make_atx_metadata)
[all …]

Completed in 43 milliseconds

12