Home
last modified time | relevance | path

Searched refs:extra (Results 1 – 5 of 5) sorted by relevance

/system/core/toolbox/
Dmount.c65 static void add_extra_option(struct extra_opts *extra, char *s) in add_extra_option() argument
68 int newlen = extra->used_size + len; in add_extra_option()
70 if (extra->str) in add_extra_option()
73 if (newlen >= extra->alloc_size) { in add_extra_option()
76 new = realloc(extra->str, newlen + 1); /* +1 for NUL */ in add_extra_option()
80 extra->str = new; in add_extra_option()
81 extra->end = extra->str + extra->used_size; in add_extra_option()
82 extra->alloc_size = newlen; in add_extra_option()
85 if (extra->used_size) { in add_extra_option()
86 *extra->end = ','; in add_extra_option()
[all …]
/system/core/
DREADME12 Currently system/bluetooth/... and system/extra/... have some pieces
/system/core/adb/
Dadb.h132 void *extra; member
Dcommandline.c50 static char *product_file(const char *extra) in product_file() argument
61 n = strlen(gProductOutPath) + strlen(extra) + 2; in product_file()
68 snprintf(x, (size_t)n, "%s" OS_PATH_SEPARATOR_STR "%s", gProductOutPath, extra); in product_file()
Dsockets.c855 s->extra = action_cb; in create_smart_socket()