Searched refs:arg (Results 26 - 50 of 1695) sorted by relevance

1234567891011>>

/external/libppp/src/
H A Dcommand.c208 HelpCommand(struct cmdargs const *arg) argument
214 if (!arg->prompt) {
219 if (arg->argc > arg->argn) {
220 for (cmd = arg->cmdtab; cmd->name || cmd->alias; cmd++)
221 if ((cmd->lauth & arg->prompt->auth) &&
222 ((cmd->name && !strcasecmp(cmd->name, arg->argv[arg->argn])) ||
223 (cmd->alias && !strcasecmp(cmd->alias, arg->argv[arg
261 IdentCommand(struct cmdargs const *arg) argument
270 SendIdentification(struct cmdargs const *arg) argument
280 CloneCommand(struct cmdargs const *arg) argument
300 RemoveCommand(struct cmdargs const *arg) argument
315 RenameCommand(struct cmdargs const *arg) argument
329 LoadCommand(struct cmdargs const *arg) argument
361 LogCommand(struct cmdargs const *arg) argument
391 DialCommand(struct cmdargs const *arg) argument
521 int arg, secs; local
618 ShellCommand(struct cmdargs const *arg, int bg) argument
720 BgShellCommand(struct cmdargs const *arg) argument
728 FgShellCommand(struct cmdargs const *arg) argument
734 ResolvCommand(struct cmdargs const *arg) argument
908 ShowEscape(struct cmdargs const *arg) argument
927 ShowTimerList(struct cmdargs const *arg) argument
934 ShowStopped(struct cmdargs const *arg) argument
956 ShowVersion(struct cmdargs const *arg) argument
963 ShowProtocolStats(struct cmdargs const *arg) argument
1086 struct cmdargs arg; local
1230 ShowCommand(struct cmdargs const *arg) argument
1244 TerminalCommand(struct cmdargs const *arg) argument
1263 QuitCommand(struct cmdargs const *arg) argument
1276 OpenCommand(struct cmdargs const *arg) argument
1325 CloseCommand(struct cmdargs const *arg) argument
1353 DownCommand(struct cmdargs const *arg) argument
1379 SetModemSpeed(struct cmdargs const *arg) argument
1410 SetStoppedTimeout(struct cmdargs const *arg) argument
1428 SetServer(struct cmdargs const *arg) argument
1534 SetEscape(struct cmdargs const *arg) argument
1553 SetInterfaceAddr(struct cmdargs const *arg) argument
1641 SetVariable(struct cmdargs const *arg) argument
2476 SetCommand(struct cmdargs const *arg) argument
2491 AddCommand(struct cmdargs const *arg) argument
2581 DeleteCommand(struct cmdargs const *arg) argument
2629 NatEnable(struct cmdargs const *arg) argument
2652 NatOption(struct cmdargs const *arg) argument
2676 LinkCommand(struct cmdargs const *arg) argument
2727 command_ChooseLink(struct cmdargs const *arg) argument
2784 OptSet(struct cmdargs const *arg) argument
2817 IfaceAliasOptSet(struct cmdargs const *arg) argument
2833 NegotiateSet(struct cmdargs const *arg) argument
3066 NegotiateCommand(struct cmdargs const *arg) argument
3104 ClearCommand(struct cmdargs const *arg) argument
3150 RunListCommand(struct cmdargs const *arg) argument
3177 IfaceAddCommand(struct cmdargs const *arg) argument
3227 IfaceDeleteCommand(struct cmdargs const *arg) argument
3263 IfaceClearCommand(struct cmdargs const *arg) argument
3289 SetProcTitle(struct cmdargs const *arg) argument
[all...]
/external/bison/lib/
H A Dquotearg.h99 char const *arg, size_t argsize,
104 char *quotearg_alloc (char const *arg, size_t argsize,
112 char *quotearg_n (int n, char const *arg);
115 char *quotearg (char const *arg);
120 char *quotearg_n_style (int n, enum quoting_style s, char const *arg);
126 char const *arg, size_t argsize);
129 char *quotearg_style (enum quoting_style s, char const *arg);
132 char *quotearg_char (char const *arg, char ch);
135 char *quotearg_colon (char const *arg);
/external/chromium/chrome/browser/resources/shared/js/cr/
H A Dcommand_line.js63 var arg = ary[i];
65 if (arg.substr(0, 2) == '--') {
66 var pos = arg.indexOf('=');
69 this.options[arg.substr(0, pos)] = arg.substr(pos + 1);
72 this.options[arg] = true;
76 this.looseArguments.push(arg);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DToolMessage.java47 public ToolMessage(int msgID, Object arg) { argument
48 super(msgID, arg, null);
54 public ToolMessage(int msgID, Object arg, Object arg2) { argument
55 super(msgID, arg, arg2);
57 public ToolMessage(int msgID, Object arg, Throwable e) { argument
58 super(msgID,arg,null);
63 if ( arg!=null ) {
64 st.add("arg", arg);
/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DCharArrayWrapper.java31 public CharArrayWrapper(char[] arg){ argument
32 m_char = arg;
H A DIntArrayWrapper.java31 public IntArrayWrapper(int[] arg){ argument
32 m_int = arg;
H A DLongArrayWrapper.java31 public LongArrayWrapper(long[] arg){ argument
32 m_long = arg;
/external/clang/test/CodeGen/Inputs/
H A Dstdio.h2 extern int vfprintf(struct FILE *s, const char *format, __builtin_va_list arg);
3 extern int vprintf(const char *format, __builtin_va_list arg);
/external/clang/test/SemaObjC/
H A Dformat-strings-system.h10 #define NSAssert(fmt, arg) NSLog(fmt, arg, 0, 0)
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebkitversion.cpp43 return QString::fromLatin1("%1.%2").arg(WEBKIT_MAJOR_VERSION).arg(WEBKIT_MINOR_VERSION);
/external/android-mock/tests/com/google/android/testing/mocking/
H A DClassHasOverloadedMethods.java28 public void foo(int arg) { argument
/external/clang/test/Sema/
H A Dassign-null.c5 typedef void (*hookfunc)(void *arg);
H A Dblock-args.c18 int arg; local
20 ^{return 2;}(arg); // expected-error {{too many arguments to block call}}
22 ^(){return 4;}(arg); // expected-error {{too many arguments to block call}}
23 ^(int x, ...){return 5;}(arg, arg); // Explicit varargs, ok.
/external/clang/test/SemaCXX/
H A Dinstantiate-blocks.cpp9 T1 (^block)(T) = ^ T1 (T arg) {
10 byref_block_arg = arg;
11 block_arg = arg; // expected-error {{variable is not assignable (missing __block type specifier)}}
12 return block_arg+arg; };
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/languages/
H A Den.stg38 CANNOT_WRITE_FILE(arg,exception,stackTrace) ::= <<
39 cannot write file <arg>: <exception>
42 CANNOT_CLOSE_FILE(arg,exception,stackTrace) ::= "cannot close file <arg>: <exception>"
43 CANNOT_FIND_TOKENS_FILE(arg) ::= "cannot find tokens file <arg>"
44 ERROR_READING_TOKENS_FILE(arg,exception,stackTrace) ::= <<
45 problem reading token vocabulary file <arg>: <exception>
48 DIR_NOT_FOUND(arg,exception,stackTrace) ::= "directory not found: <arg>"
[all...]
/external/clang/test/CodeGenCXX/
H A Dconstructor-conversion.cpp13 X(const char* arg, int ix=0) { iX = ix; fX = 6.0; name = arg+ix; } argument
23 void g(X arg) { argument
24 arg.pr();
27 void f(X arg) { argument
/external/icu4c/tools/toolutil/
H A Duoptions.c26 char *arg; local
31 arg=argv[i];
32 if(!stopOptions && *arg=='-' && (c=arg[1])!=0) {
35 arg+=2;
38 if(*arg==0) {
45 if(options[j].longName && uprv_strcmp(arg, options[j].longName)==0) {
86 if(*arg!=0) {
88 option->value=arg;
89 /* do not process the rest of this arg a
[all...]
/external/iptables/extensions/
H A Dlibxt_u32.c111 const char *arg = cb->arg; /* the argument string */ local
112 const char *start = cb->arg;
125 while (isspace(*arg))
126 ++arg;
128 if (*arg == '\0') {
144 (unsigned int)(arg - start));
153 if (*arg == '=') {
158 (unsigned int)(arg - start));
160 ++arg;
[all...]
/external/clang/test/CodeGen/
H A Darm-aapcs-vfp.c18 struct homogeneous_struct test_struct(struct homogeneous_struct arg) { argument
19 return struct_callee(arg);
27 void test_array(struct nested_array arg) { argument
28 array_callee(arg);
55 void test_big(struct big_struct arg) { argument
56 big_callee(arg);
68 void test_hetero(struct heterogeneous_struct arg) { argument
69 hetero_callee(arg);
88 void test_neon(struct neon_struct arg) { argument
89 neon_callee(arg);
[all...]
H A D2008-07-31-asm-labels.c24 void pipe(int arg) { argument
/external/elfutils/libdwfl/
H A Ddwfl_getdwarf.c57 void *arg; member in struct:module_callback_info
62 const char *name, Dwarf_Addr start, void *arg)
64 const struct module_callback_info *info = arg;
67 return (*info->callback) (mod, userdata, name, start, dw, bias, info->arg);
75 void *arg,
78 struct module_callback_info info = { callback, arg };
61 module_callback(Dwfl_Module *mod, void **userdata, const char *name, Dwarf_Addr start, void *arg) argument
71 dwfl_getdwarf(Dwfl *dwfl, int (*callback) (Dwfl_Module *, void **, const char *, Dwarf_Addr, Dwarf *, Dwarf_Addr, void *), void *arg, ptrdiff_t offset) argument
/external/iproute2/include/
H A Drt_names.h11 int rtnl_rtprot_a2n(__u32 *id, char *arg);
12 int rtnl_rtscope_a2n(__u32 *id, char *arg);
13 int rtnl_rttable_a2n(__u32 *id, char *arg);
14 int rtnl_rtrealm_a2n(__u32 *id, char *arg);
15 int rtnl_dsfield_a2n(__u32 *id, char *arg);
24 int ll_addr_a2n(char *lladdr, int len, char *arg);
/external/openssl/crypto/evp/
H A Dnames.c142 void *arg; member in struct:doall_cipher
144 const char *from, const char *to, void *arg);
147 static void do_all_cipher_fn(const OBJ_NAME *nm, void *arg) argument
149 struct doall_cipher *dc = arg;
151 dc->fn(NULL, nm->name, nm->data, dc->arg);
153 dc->fn((const EVP_CIPHER *)nm->data, nm->name, NULL, dc->arg);
157 const char *from, const char *to, void *x), void *arg)
161 dc.arg = arg;
166 const char *from, const char *to, void *x), void *arg)
156 EVP_CIPHER_do_all(void (*fn)(const EVP_CIPHER *ciph, const char *from, const char *to, void *x), void *arg) argument
165 EVP_CIPHER_do_all_sorted(void (*fn)(const EVP_CIPHER *ciph, const char *from, const char *to, void *x), void *arg) argument
176 void *arg; member in struct:doall_md
181 do_all_md_fn(const OBJ_NAME *nm, void *arg) argument
190 EVP_MD_do_all(void (*fn)(const EVP_MD *md, const char *from, const char *to, void *x), void *arg) argument
199 EVP_MD_do_all_sorted(void (*fn)(const EVP_MD *md, const char *from, const char *to, void *x), void *arg) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DFunctionDelegates.cs39 public delegate TResult Func<T, TResult>(T arg); argument
/external/clang/test/Index/
H A Dcomplete-at-exprstmt.m4 - (int)myMethod:(int)arg;
8 - (int)myMethod:(int)arg {
41 // CHECK-CC3: ParmDecl:{ResultType int}{TypedText arg}

Completed in 637 milliseconds

1234567891011>>