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

/system/core/toolbox/
H A Dmount.c65 static void add_extra_option(struct extra_opts *extra, char *s) argument
68 int newlen = extra->used_size + len;
70 if (extra->str)
73 if (newlen >= extra->alloc_size) {
76 new = realloc(extra->str, newlen + 1); /* +1 for NUL */
80 extra->str = new;
81 extra->end = extra->str + extra->used_size;
82 extra
95 parse_mount_options(char *arg, unsigned long rwflag, struct extra_opts *extra, int* loop, char *loopdev) argument
142 static struct extra_opts extra; variable in typeref:struct:extra_opts
[all...]
/system/core/adb/
H A Dadb.h132 void *extra; member in struct:asocket
H A Dcommandline.c51 static char *product_file(const char *extra) argument
62 n = strlen(gProductOutPath) + strlen(extra) + 2;
69 snprintf(x, (size_t)n, "%s" OS_PATH_SEPARATOR_STR "%s", gProductOutPath, extra);
H A Dsockets.c855 s->extra = action_cb;
/system/security/keystore/
H A Dkeystore.cpp547 // memory version has extra padding to tolerate rounding up to
1538 size_t extra = decode_key_length(p, plen); local
1539 char *match = (char*) malloc(extra + 1);
1542 matches->push(String16(match, extra));
1545 ALOGW("could not allocate match of size %zd", extra);

Completed in 106 milliseconds