Searched refs:actual (Results 1 - 3 of 3) sorted by relevance

/system/media/audio_utils/
H A Dtinysndfile.c78 size_t actual; local
79 actual = fread(wav, sizeof(char), sizeof(wav), stream);
80 if (actual < 12) {
81 fprintf(stderr, "actual %u < 44\n", actual);
102 actual = fread(chunk, sizeof(char), sizeof(chunk), stream);
103 if (actual != sizeof(chunk)) {
104 fprintf(stderr, "actual %u != %u\n", actual, sizeof(chunk));
123 actual
[all...]
/system/core/sdcard/
H A Dsdcard.c344 * Populates 'buf' with the path and returns the actual name (within 'buf') on success,
353 char* actual; local
361 actual = buf + pathlen + 1;
362 memcpy(actual, name, namelen + 1);
369 return actual;
374 memcpy(actual, entry->d_name, namelen);
380 return actual;
713 * places user_id at the top directory level, with the actual roots
/system/core/debuggerd/
H A Dtombstone.c513 ssize_t actual = read(logfd, log_entry.buf, LOGGER_ENTRY_MAX_LEN); local
514 if (actual < 0) {
526 } else if (actual == 0) {

Completed in 99 milliseconds