Home
last modified time | relevance | path

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

/system/core/toolbox/
Dmount.c65 static void add_extra_option(struct extra_opts *extra, char *s) in add_extra_option() argument
70 if (extra->str) in add_extra_option()
72 newlen = extra->used_size + len; in add_extra_option()
74 if (newlen >= extra->alloc_size) { in add_extra_option()
77 new = realloc(extra->str, newlen + 1); /* +1 for NUL */ in add_extra_option()
81 extra->str = new; in add_extra_option()
82 extra->end = extra->str + extra->used_size; in add_extra_option()
83 extra->alloc_size = newlen + 1; in add_extra_option()
86 if (extra->used_size) { in add_extra_option()
87 *extra->end = ','; in add_extra_option()
[all …]
/system/media/audio_utils/
Dtinysndfile.c293 size_t extra = 0; in sf_open_write() local
298 extra = 14; in sf_open_write()
302 (void) fwrite(wav, 44 + extra, 1, stream); in sf_open_write()
339 size_t extra = (handle->info.format & SF_FORMAT_SUBMASK) == SF_FORMAT_FLOAT ? 14 : 0; in sf_close() local
340 (void) fread(wav, 44 + extra, 1, handle->stream); in sf_close()
342 write4u(&wav[4], dataSize + 36 + extra); // riffSize in sf_close()
343 write4u(&wav[40 + extra], dataSize); // dataSize in sf_close()
345 (void) fwrite(wav, 44 + extra, 1, handle->stream); in sf_close()
/system/core/
DREADME12 Currently system/bluetooth/... and system/extra/... have some pieces
/system/media/camera/docs/
DCameraMetadataKeys.mako39 # Unconditionally add extra information if necessary
/system/core/adb/
Dcommandline.c53 static char *product_file(const char *extra) in product_file() argument
64 n = strlen(gProductOutPath) + strlen(extra) + 2; in product_file()
71 snprintf(x, (size_t)n, "%s" OS_PATH_SEPARATOR_STR "%s", gProductOutPath, extra); in product_file()
/system/security/keystore/
Dkeystore.cpp1186 size_t extra = decode_key_length(p, plen); in saw() local
1187 char *match = (char*) malloc(extra + 1); in saw()
1190 matches->push(android::String16(match, extra)); in saw()
1193 ALOGW("could not allocate match of size %zd", extra); in saw()