OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:oarg
(Results
1 - 3
of
3
) sorted by null
/external/dhcpcd/
dhcpcd.c
311
parse_option(int opt, char *
oarg
, struct options *options)
323
strlcpy(options->script,
oarg
, sizeof(options->script));
326
if (
oarg
)
328
HOSTNAME_MAX_LEN,
oarg
);
342
if (
oarg
)
344
VENDORCLASSID_MAX_LEN,
oarg
);
354
if (*
oarg
== '-') {
360
options->leasetime = (uint32_t)strtol(
oarg
, NULL, 0);
362
logger(LOG_ERR, "`%s' out of range",
oarg
);
367
options->metric = atoint(
oarg
);
[
all
...]
/external/bluetooth/glib/gobject/
glib-genmarshal.c
226
complete_out_arg (OutArgument *
oarg
)
255
g_return_val_if_fail (
oarg
!= NULL, FALSE);
258
if (strcmp (args[i].keyword,
oarg
->keyword) == 0)
260
oarg
->sig_name = args[i].sig_name;
261
oarg
->ctype = args[i].ctype;
262
oarg
->setter = args[i].setter;
544
OutArgument *
oarg
= g_new0 (OutArgument, 1);
local
546
oarg
->keyword = g_strdup (pname);
548
return
oarg
;
/external/qemu/tcg/
tcg.c
1006
int
oarg
;
local
1007
oarg
= ct_str[0] - '0';
1008
assert(
oarg
< def->nb_oargs);
1009
assert(def->args_ct[
oarg
].ct & TCG_CT_REG);
1012
def->args_ct[i] = def->args_ct[
oarg
];
1013
def->args_ct[
oarg
].ct = TCG_CT_ALIAS;
1014
def->args_ct[
oarg
].alias_index = i;
1016
def->args_ct[i].alias_index =
oarg
;
[
all
...]
Completed in 163 milliseconds