Searched defs:extra (Results 1 - 4 of 4) sorted by path

/system/core/adb/
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);
/system/core/toolbox/
H A Dmount.c65 static void add_extra_option(struct extra_opts *extra, char *s) argument
70 if (extra->str)
72 newlen = extra->used_size + len;
74 if (newlen >= extra->alloc_size) {
77 new = realloc(extra->str, newlen + 1); /* +1 for NUL */
81 extra->str = new;
82 extra->end = extra->str + extra->used_size;
83 extra
96 parse_mount_options(char *arg, unsigned long rwflag, struct extra_opts *extra, int* loop, char *loopdev) argument
161 static struct extra_opts extra; variable in typeref:struct:extra_opts
[all...]
/system/media/audio_utils/
H A Dtinysndfile.c333 size_t extra = (handle->info.format & SF_FORMAT_SUBMASK) == SF_FORMAT_FLOAT ? 14 : 0; local
334 (void) fread(wav, 44 + extra, 1, handle->stream);
336 write4u(&wav[4], dataSize + 36 + extra); // riffSize
337 write4u(&wav[40 + extra], dataSize); // dataSize
339 (void) fwrite(wav, 44 + extra, 1, handle->stream);
/system/security/keystore/
H A Dkeystore.cpp567 // memory version has extra padding to tolerate rounding up to
1591 size_t extra = decode_key_length(p, plen); local
1592 char *match = (char*) malloc(extra + 1);
1595 matches->push(String16(match, extra));
1598 ALOGW("could not allocate match of size %zd", extra);

Completed in 131 milliseconds