Searched refs:routine (Results 1 - 25 of 92) sorted by relevance

1234

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dcleanup.c82 if (execute && (cleanup->routine != NULL))
85 (*cleanup->routine) (cleanup->arg);
100 ptw32_cleanup_callback_t routine, void *arg)
116 * routine
141 cleanup->routine = routine;
99 ptw32_push_cleanup(ptw32_cleanup_t * cleanup, ptw32_cleanup_callback_t routine, void *arg) argument
/external/jemalloc/test/src/
H A Dthd.c7 LPTHREAD_START_ROUTINE routine = (LPTHREAD_START_ROUTINE)proc; local
8 *thd = CreateThread(NULL, 0, routine, arg, 0, NULL);
/external/ltrace/testsuite/ltrace.torture/
H A Dvfork-thread.c8 routine (void *data) function
41 pthread_create (&thread, NULL, &routine, NULL);
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dspl_sqrt_floor_arm.S7 @ Subject: Re: sqrt routine
19 @ Subject: Fwd: sqrt routine
21 @ I saw your sqrt routine from several web sites, including
/external/libunwind/doc/
H A Dunw_regname.tex19 The \Func{unw\_regname}() routine returns a printable name for
27 The \Func{unw\_regname}() routine cannot fail and always returns a
32 The \Func{unw\_regname}() routine is thread-safe as well as safe to
H A Dunw_backtrace.tex23 \Func{unw\_backtrace}() is a convenient routine for obtaining the backtrace for
24 the calling program. The routine fills up to \Var{size} addresses in the array
25 pointed by \Var{buffer}. The routine is only available for local unwinding.
37 The routine returns the number of addresses stored in the array pointed by
H A Dunw_flush_cache.tex19 The \Func{unw\_flush\_cache}() routine flushes all cached info as it
25 flushed by a call to this routine. The address range specified by
36 The \Func{unw\_flush\_cache}() routine cannot fail and does not
41 The \Func{unw\_flush\_cache}() routine is thread-safe as well as safe to
H A Dunw_get_accessors.tex19 The \Func{unw\_get\_accessors}() routine returns a pointer to a
32 The \Func{unw\_get\_accessors}() routine cannot fail and always
38 The \Func{unw\_get\_accessors}() routine is thread-safe as well as
H A Dunw_is_fpreg.tex19 The \Func{unw\_is\_fpreg}() routine checks whether register number
22 This routine is normally implemented as a macro and applications
27 The \Func{unw\_is\_fpreg}() routine returns a non-zero value if
H A Dunw_get_proc_info.tex19 The \Func{unw\_get\_proc\_info}() routine returns auxiliary
39 handler routine. This is sometimes called the \emph{personality}
40 routine. If the procedure does not define
41 a personality routine, the \Var{handler} member is cleared to 0. \\
60 \Func{unw\_get\_proc\_info}() routine
66 \Func{unw\_get\_proc\_info}() routine
73 \Func{unw\_get\_proc\_info}() routine
80 members. If a single function/routine is split into multiple,
93 in the local address-space, this routine is also safe to use from a
H A D_U_dyn_cancel.tex19 The \Func{\_U\_dyn\_cancel}() routine cancels the registration of the
24 The \Func{\_U\_dyn\_cancel}() routine is guaranteed to execute in
H A D_U_dyn_register.tex19 The \Func{\_U\_dyn\_register}() routine registers unwind-info for a
25 The \Func{\_U\_dyn\_register}() routine is guaranteed to execute in
H A Dunw_destroy_addr_space.tex19 The \Func{unw\_destroy\_addr\_space}() routine destroys the
H A Dunw_get_proc_info_by_ip.tex19 The \Func{unw\_get\_proc\_info\_by\_ip}() routine returns the same
28 The routine expects the followins arguments: \Var{as} is the
46 members. If a single function/routine is split into multiple,
59 address-space is passed in argument \Var{as}, this routine is also
H A Dunw_resume.tex19 The \Func{unw\_resume}() routine resumes execution at the stack frame
20 identified by \Var{cp}. The behavior of this routine differs
39 \Func{unw\_resume} routine then returns normally (that is, unlikely
70 local address-space, this routine is also safe to use from a signal
H A Dunw_strerror.tex19 The \Func{unw\_strerror}() routine maps the (negative) \Var{err\_code}
H A Dunw_getcontext.tex19 The \Func{unw\_getcontext}() routine initializes the context structure
26 This routine is normally implemented as a macro and applications
H A Dunw_step.tex19 The \Func{unw\_step}() routine advances the unwind cursor \Var{cp} to
32 address-space, this routine is also safe to use from a signal handler.
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dusage.c48 void set_die_routine(void (*routine)(const char *err, va_list params) NORETURN)
50 die_routine = routine;
/external/chromium_org/tools/find_runtime_symbols/
H A Dstatic_symbols.py222 routine = ''
254 routine = sym_name
260 # Tag this routine with the starting address in case the image
261 # has multiple occurrences of this routine. We use a syntax
267 routine = self._get_short_function_name(routine)
269 last_start, Procedure(last_start, start_val, routine))
272 routine = sym_name
275 routine = self._get_short_function_name(routine)
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
H A Dmem-memcpy.c25 static const char *routine = "default"; variable
36 OPT_STRING('r', "routine", &routine, "default",
37 "Specify routine to copy"),
51 struct routine { struct
57 struct routine routines[] = {
210 if (!strcmp(routines[i].name, routine))
214 printf("Unknown routine:%s\n", routine);
H A Dmem-memset.c25 static const char *routine = "default"; variable
36 OPT_STRING('r', "routine", &routine, "default",
37 "Specify routine to set"),
51 struct routine { struct
57 static const struct routine routines[] = {
202 if (!strcmp(routines[i].name, routine))
206 printf("Unknown routine:%s\n", routine);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
H A Dos_thread.h57 static INLINE pipe_thread pipe_thread_create( void *(* routine)( void *), void *param )
65 ret = pthread_create( &thread, NULL, routine, param );
138 static INLINE pipe_thread pipe_thread_create( void *(WINAPI * routine)( void *), void *param )
141 return CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE) routine, param, 0, &id );
252 static INLINE pipe_thread pipe_thread_create( void *(* routine)( void *), void *param )
/external/mesa3d/src/gallium/auxiliary/os/
H A Dos_thread.h57 static INLINE pipe_thread pipe_thread_create( void *(* routine)( void *), void *param )
65 ret = pthread_create( &thread, NULL, routine, param );
138 static INLINE pipe_thread pipe_thread_create( void *(WINAPI * routine)( void *), void *param )
141 return CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE) routine, param, 0, &id );
252 static INLINE pipe_thread pipe_thread_create( void *(* routine)( void *), void *param )
/external/llvm/test/MC/ARM/
H A Deh-compact-pr0.s53 @ 0x80 = Compact model 0, personality routine: __aeabi_unwind_cpp_pr0
87 @ 0x80 = Compact model 0, personality routine: __aeabi_unwind_cpp_pr0

Completed in 385 milliseconds

1234