OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:toy_list
(Results
1 - 3
of
3
) sorted by null
/external/toybox/scripts/
install.c
13
// Populate
toy_list
[].
15
struct {char *name; int flags;}
toy_list
[] = {
variable in typeref:struct:__anon24536
25
for (i=1; i<sizeof(
toy_list
)/sizeof(*
toy_list
); i++) {
26
int fl =
toy_list
[i].flags;
33
len += printf("%s\n",
toy_list
[i].name);
/external/toybox/
toys.h
86
struct
toy_list
*toy_find(char *name);
87
void toy_init(struct
toy_list
*which, char *argv[]);
92
extern struct
toy_list
{
struct
97
}
toy_list
[];
102
struct
toy_list
*which; // Which entry in
toy_list
is this one?
main.c
12
// Populate
toy_list
[].
20
struct
toy_list
toy_list
[] = {
variable in typeref:struct:toy_list
30
struct
toy_list
*toy_find(char *name)
39
if (!strncmp(name,"toybox",6)) return
toy_list
;
44
top = ARRAY_LEN(
toy_list
)-1;
50
result = strcmp(name,
toy_list
[middle].name);
51
if (!result) return
toy_list
+middle;
71
static void toy_singleinit(struct
toy_list
*which, char *argv[])
79
if (CFG_TOYBOX && toys.which ==
toy_list
&& toys.argv[2]
[
all
...]
Completed in 192 milliseconds