Searched defs:arg (Results 201 - 225 of 1505) sorted by relevance

1234567891011>>

/external/openssl/crypto/evp/
H A De_rc5.c71 static int rc5_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr);
87 static int rc5_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr) argument
100 switch(arg)
105 data(c)->rounds = arg;
/external/ppp/pppd/plugins/radius/
H A Dradattr.c26 static void cleanup(void *opaque, int arg);
97 * arg -- not used
104 cleanup(void *opaque, int arg) argument
/external/strace/
H A Dioctl.c73 ioctl_decode(struct tcb *tcp, long code, long arg) argument
81 return term_ioctl(tcp, code, arg);
83 return sock_ioctl(tcp, code, arg);
85 return rtc_ioctl(tcp, code, arg);
88 return block_ioctl(tcp, code, arg);
91 return scsi_ioctl(tcp, code, arg);
94 return loop_ioctl(tcp, code, arg);
96 return mtd_ioctl(tcp, code, arg);
99 return ubi_ioctl(tcp, code, arg);
101 return ptp_ioctl(tcp, code, arg);
[all...]
H A Dscsi.c107 scsi_ioctl(struct tcb *tcp, long code, long arg) argument
114 if (umove(tcp, arg, &sg_io) < 0)
115 tprintf(", %#lx", arg);
124 if (!syserror(tcp) && umove(tcp, arg, &sg_io) >= 0)
132 tprintf(", %#lx", arg);
H A Dsock.c55 sock_ioctl(struct tcb *tcp, long code, long arg) argument
101 printnum(tcp, arg, ", %#d");
/external/strace/test/
H A Dleaderkill.c16 static void *start0(void *arg) argument
22 static void *start1(void *arg) argument
/external/valgrind/main/coregrind/m_replacemalloc/
H A Dreplacemalloc_core.c56 Bool VG_(replacement_malloc_process_cmd_line_option)(const HChar* arg) argument
58 if VG_INT_CLO(arg, "--alignment", VG_(clo_alignment)) {
63 VG_(fmsg_bad_option)(arg,
69 else if VG_BOOL_CLO(arg, "--trace-malloc", VG_(clo_trace_malloc)) {}
/external/valgrind/main/coregrind/m_ume/
H A Dscript.c88 HChar* arg = NULL; local
118 /* skip space before arg */
122 /* arg is from here to eol */
123 arg = cp;
131 if (arg != NULL && *arg != '\0') {
132 info->interp_args = VG_(strdup)("ume.ls.2", arg);
/external/valgrind/main/drd/tests/
H A Dannotate_ignore_rw.c14 static void* thread_func(void* arg) argument
H A Dannotate_ignore_write.c14 static void* thread_func(void* arg) argument
H A Datomic_var.c37 static void* thread_func_1(void* arg) argument
44 static void* thread_func_2(void* arg) argument
H A Dfree_is_write.c20 void* thread_func(void* arg) argument
H A Dpth_barrier_thr_cr.c18 static void* thread(void* arg) argument
H A Dpth_detached_sem.c26 static void* thread_func1(void* arg) argument
33 static void* thread_func2(void* arg) argument
H A Dpth_spinlock.c20 static void* thread_func(void* arg) argument
H A Drwlock_race.c26 static void* thread_func(void* arg) argument
H A Dthread_name.c46 int main(int arg, char** argv) argument
/external/valgrind/main/memcheck/tests/linux/
H A Dstack_switch.c23 static int thread_main(void *arg) argument
/external/valgrind/main/none/tests/
H A Dexec-sigmask.c10 static void do_exec(const char *path, const char *arg, const sigset_t *mask) argument
22 execl(path, path, arg, NULL);
H A Dpth_cancel2.c50 void *io(void *arg) argument
52 int *fd2=(int *)arg;
63 void *killer(void *arg) argument
65 pthread_t * target = (pthread_t *)arg;
/external/bison/lib/
H A Dfd-hook.c53 int fd, int request, void *arg)
57 return primary (fd, request, arg);
60 primary, fd, request, arg);
65 int fd, int request, void *arg)
67 return execute_ioctl_hooks (anchor.private_next, primary, fd, request, arg);
52 execute_ioctl_hooks(const struct fd_hook *remaining_list, gl_ioctl_fn primary, int fd, int request, void *arg) argument
64 execute_all_ioctl_hooks(gl_ioctl_fn primary, int fd, int request, void *arg) argument
/external/chromium_org/chrome/browser/
H A Dplatform_util_linux.cc19 void XDGUtil(const std::string& util, const std::string& arg) { argument
22 argv.push_back(arg);
/external/chromium_org/chromeos/dbus/
H A Dshill_service_client_unittest.cc146 scoped_ptr<base::DictionaryValue> arg(CreateExampleServiceProperties());
148 base::Bind(&ExpectDictionaryValueArgument, arg.get()),
155 *arg, local
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DDOMFileSystem.h129 DispatchCallbackRefPtrArgTask(CB* callback, PassRefPtrWillBeRawPtr<CBArg> arg) argument
131 , m_callbackArg(arg)
148 DispatchCallbackPtrArgTask(CB* callback, CBArg* arg) argument
150 , m_callbackArg(arg)
167 DispatchCallbackNonPtrArgTask(CB* callback, const CBArg& arg) argument
169 , m_callbackArg(arg)
204 void DOMFileSystem::scheduleCallback(ExecutionContext* executionContext, CB* callback, PassRefPtrWillBeRawPtr<CBArg> arg) argument
208 executionContext->postTask(adoptPtr(new DispatchCallbackRefPtrArgTask<CB, CBArg>(callback, arg)));
212 void DOMFileSystem::scheduleCallback(ExecutionContext* executionContext, CB* callback, CBArg* arg) argument
216 executionContext->postTask(adoptPtr(new DispatchCallbackPtrArgTask<CB, CBArg>(callback, arg)));
220 scheduleCallback(ExecutionContext* executionContext, CB* callback, const HeapVector<CBArg>& arg) argument
228 scheduleCallback(ExecutionContext* executionContext, CB* callback, const CBArg& arg) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bio/
H A Dsocket_helper.c83 u_long arg = on; local
85 return 0 == ioctlsocket(sock, FIONBIO, &arg);

Completed in 333 milliseconds

1234567891011>>