Searched refs:arg (Results 226 - 250 of 3552) sorted by relevance

1234567891011>>

/macosx-10.10/tcpdump-61/tcpdump/missing/
H A Dsnprintf.c223 unsigned char *arg,
231 width -= strlen((char *)arg);
237 while (*arg && prec--)
238 if ((*state->append_char) (state, *arg++))
241 while (*arg)
242 if ((*state->append_char) (state, *arg++))
254 unsigned char arg,
262 if((*state->append_char) (state, arg))
275 #define PARSE_INT_FORMAT(res, arg, unsig) \
277 res = (unsig long)va_arg(arg, unsi
222 append_string(struct state *state, unsigned char *arg, int width, int prec, int flags) argument
253 append_char(struct state *state, unsigned char arg, int width, int flags) argument
374 long arg; local
392 unsigned long arg; local
402 unsigned long arg; local
412 unsigned long arg; local
422 unsigned long arg; local
432 unsigned long arg = (unsigned long)va_arg(ap, void*); local
440 int *arg = va_arg(ap, int*); local
[all...]
/macosx-10.10/Security-57031.1.35/SecurityTool/
H A Dtrust_settings_impexp.c41 int arg; local
53 while ((arg = getopt(argc, argv, "dsh")) != -1) {
54 switch (arg) {
93 int arg; local
106 while ((arg = getopt(argc, argv, "dh")) != -1) {
107 switch (arg) {
/macosx-10.10/bash-94.1.2/bash-3.2/examples/loadables/
H A Dhead.c35 char *arg; local
39 arg = l->word->word;
40 if (arg[0] != '-' || arg[1] == '-' || (DIGIT(arg[1]) == 0))
43 wd = make_bare_word (arg+1);
/macosx-10.10/cups-408/cups/cups/
H A Dthread.c110 void *arg) /* I - Entry point context */
114 return (pthread_create(&thread, NULL, (void *(*)(void *))func, arg) == 0);
220 void *arg) /* I - Entry point context */
222 return (_beginthreadex(NULL, 0, (LPTHREAD_START_ROUTINE) func, arg, 0, NULL)
312 void *arg) /* I - Entry point context */
318 (void)arg;
108 _cupsThreadCreate( _cups_thread_func_t func, void *arg) argument
218 _cupsThreadCreate( _cups_thread_func_t func, void *arg) argument
310 _cupsThreadCreate( _cups_thread_func_t func, void *arg) argument
/macosx-10.10/dtrace-147/DTTk/Bin/
H A Dnewproc.d57 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
58 this->here_arg = copyinstr(this->arg, COPYINSTRLIMIT);
69 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
70 this->here_arg = copyinstr(this->arg, COPYINSTRLIMIT);
81 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
82 this->here_arg = copyinstr(this->arg, COPYINSTRLIMIT);
93 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
94 this->here_arg = copyinstr(this->arg, COPYINSTRLIMIT);
105 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
106 this->here_arg = copyinstr(this->arg, COPYINSTRLIMI
[all...]
/macosx-10.10/dtrace-147/DTTk/Proc/
H A Dnewproc.d57 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
58 this->here_arg = copyinstr(this->arg, COPYINSTRLIMIT);
69 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
70 this->here_arg = copyinstr(this->arg, COPYINSTRLIMIT);
81 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
82 this->here_arg = copyinstr(this->arg, COPYINSTRLIMIT);
93 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
94 this->here_arg = copyinstr(this->arg, COPYINSTRLIMIT);
105 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
106 this->here_arg = copyinstr(this->arg, COPYINSTRLIMI
[all...]
/macosx-10.10/ruby-106/ruby/lib/webrick/
H A Dlog.rb112 # Formats +arg+ for the logger
114 # * If +arg+ is an Exception, it will format the error message and
116 # * If +arg+ responds to #to_str, it will return it.
117 # * Otherwise it will return +arg+.inspect.
118 def format(arg)
119 if arg.is_a?(Exception)
120 "#{arg.class}: #{arg.message}\n\t" <<
121 arg.backtrace.join("\n\t") << "\n"
122 elsif arg
[all...]
/macosx-10.10/Libc-1044.1.2/include/
H A Dstrhash.h60 int (*func)(char *k, void *d, void *arg), void *arg);
/macosx-10.10/OpenSSL098-52/src/include/openssl/
H A Dtls1.h153 #define SSL_set_tlsext_debug_arg(ssl, arg) \
154 SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_DEBUG_ARG,0, (void *)arg)
159 #define SSL_get_tlsext_status_exts(ssl, arg) \
160 SSL_ctrl(ssl,SSL_CTRL_GET_TLSEXT_STATUS_REQ_EXTS,0, (void *)arg)
162 #define SSL_set_tlsext_status_exts(ssl, arg) \
163 SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_EXTS,0, (void *)arg)
165 #define SSL_get_tlsext_status_ids(ssl, arg) \
166 SSL_ctrl(ssl,SSL_CTRL_GET_TLSEXT_STATUS_REQ_IDS,0, (void *)arg)
168 #define SSL_set_tlsext_status_ids(ssl, arg) \
169 SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_IDS,0, (void *)arg)
[all...]
/macosx-10.10/OpenSSL098-52/src/ssl/
H A Dtls1.h153 #define SSL_set_tlsext_debug_arg(ssl, arg) \
154 SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_DEBUG_ARG,0, (void *)arg)
159 #define SSL_get_tlsext_status_exts(ssl, arg) \
160 SSL_ctrl(ssl,SSL_CTRL_GET_TLSEXT_STATUS_REQ_EXTS,0, (void *)arg)
162 #define SSL_set_tlsext_status_exts(ssl, arg) \
163 SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_EXTS,0, (void *)arg)
165 #define SSL_get_tlsext_status_ids(ssl, arg) \
166 SSL_ctrl(ssl,SSL_CTRL_GET_TLSEXT_STATUS_REQ_IDS,0, (void *)arg)
168 #define SSL_set_tlsext_status_ids(ssl, arg) \
169 SSL_ctrl(ssl,SSL_CTRL_SET_TLSEXT_STATUS_REQ_IDS,0, (void *)arg)
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/isc/include/isc/
H A Dlfsr.h51 void *arg; /*%< reseed function argument */ member in struct:isc_lfsr
60 isc_lfsrreseed_t reseed, void *arg);
/macosx-10.10/curl-83.1.2/curl/tests/libtest/
H A Dlib1513.c33 static int progressKiller(void *arg, argument
39 (void)arg;
/macosx-10.10/dcerpc-61/dcerpc/libdcethread/
H A Ddcethread_exit.c107 basic_thread(void* arg) argument
111 dcethread_exit(arg);
/macosx-10.10/emacs-93/emacs/lisp/emacs-lisp/
H A Dunsafep.el45 ;; 6. It's one of (apply, mapc, mapcar, mapconcat) and its first arg is a
128 arg)
131 ;;It's a normal function - unsafe if any arg is
137 ;;Unsafe if 1st arg isn't a quoted lambda
138 (setq arg (cadr form))
140 ((memq (car-safe arg) '(quote function))
141 (setq reason (unsafep-function (cadr arg))))
142 ((eq (car-safe arg) 'lambda)
144 (setq reason (unsafep arg unsafep-vars)))
146 (setq reason `(unquoted ,arg))))
[all...]
/macosx-10.10/emacs-93/emacs/lisp/obsolete/
H A Dhscroll.el84 (defun hscroll-mode (&optional arg)
91 (defun hscroll-global-mode (&optional arg)
/macosx-10.10/gnudiff-19/diffutils/config/
H A Ddepcomp53 # HP compiler uses -M and no extra arg.
259 for arg
261 case "$arg" in
268 set fnord "$@" "$arg"
270 shift # "$arg"
302 for arg in "$@"; do
307 case "$arg" in
309 set fnord "$@" "$arg"; shift;;
313 set fnord "$@" "$arg"; shift;;
342 for arg
[all...]
/macosx-10.10/gpatch-3/patch/
H A Dbackupfile.h56 enum backup_type get_version PARAMS ((char const *context, char const *arg));
57 enum backup_type xget_version PARAMS ((char const *context, char const *arg));
/macosx-10.10/ipsec-286.1.1/ipsec-tools/racoon/
H A Dgenlist.h58 typedef void *(genlist_func_t) (void *entry, void *arg);
62 * 'entry' arg), the list traversal exits and the return value is returned
63 * further from genlist_foreach(). Optional 'arg' may be passed to func(), e.g.
65 void *genlist_foreach (struct genlist *head, genlist_func_t func, void *arg);
/macosx-10.10/libauto-186/tests/
H A Dthreadedresurrection.m41 void *helper(void *arg) {
43 [GlobalSet addObject:(id)arg];
45 [GlobalSet removeObject:(id)arg];
47 return arg;
/macosx-10.10/llvmCore-3425.0.34/lib/MC/MCDisassembler/
H A DEDOperand.h27 void* arg);
45 /// @arg disassembler - The disassembler responsible for the operand
46 /// @arg inst - The instruction containing this operand
47 /// @arg opIndex - The index of the operand in inst
48 /// @arg mcOpIndex - The index of the operand in the original MCInst
59 /// @arg result - A reference whose target is filled in with the value of
61 /// @arg callback - A function to call to obtain register values
62 /// @arg arg - An opaque argument to pass to callback
65 void *arg);
[all...]
/macosx-10.10/ntp-92/lib/isc/include/isc/
H A Dlfsr.h51 void *arg; /*%< reseed function argument */ member in struct:isc_lfsr
60 isc_lfsrreseed_t reseed, void *arg);
/macosx-10.10/postfix-255/postfix/src/cleanup/
H A Dcleanup_map1n.c82 int arg; local
112 for (arg = 0; arg < argv->argc; arg++) {
127 if (been_here_check_fixed(been_here, argv->argv[arg]) != 0)
138 quote_822_local(state->temp1, argv->argv[arg]);
140 saved_lhs = mystrdup(argv->argv[arg]);
144 UPDATE(argv->argv[arg], STR(state->temp1));
/macosx-10.10/ppp-786.1.1/Helpers/pppdump/
H A Ddeflate.c127 z_comp_stats(arg, stats)
128 void *arg;
131 struct deflate_state *state = (struct deflate_state *) arg;
183 z_decomp_free(arg)
184 void *arg;
186 struct deflate_state *state = (struct deflate_state *) arg;
193 z_decomp_init(arg, options, opt_len, unit, hdrlen, mru, debug)
194 void *arg;
198 struct deflate_state *state = (struct deflate_state *) arg;
219 z_decomp_reset(arg)
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/iwidgets/sample/
H A Dhierarchy.rb13 Tk::Iwidgets::Hierarchy.new(:querycommand=>proc{|arg| get_files(arg.node)},
/macosx-10.10/ruby-106/ruby/lib/uri/
H A Dhttp.rb83 def initialize(*arg)
84 super(*arg)

Completed in 196 milliseconds

1234567891011>>