/system/core/adb/ |
H A D | utils.c | 72 buff_add (char* buff, char* buffEnd, const char* format, ... ) argument 82 va_start(args, format); 83 nn = vsnprintf( buff, avail, format, args); 88 * but they will also do that if the format spec is
|
H A D | usb_vendors.c | 173 int build_path(char* buff, size_t len, const char* format, const char* home) argument 175 if (snprintf(buff, len, format, home, ANDROID_PATH, ANDROID_ADB_INI) >= len) {
|
/system/core/run-as/ |
H A D | run-as.c | 90 panic(const char* format, ...) argument 95 va_start(args, format); 96 vfprintf(stderr, format, args);
|
/system/extras/tests/bionic/libc/bionic/ |
H A D | test_mutex.c | 35 static void panic( const char* format, ... ) argument 38 va_start(args, format); 39 vfprintf(stderr, format, args);
|
/system/vold/ |
H A D | Fat.cpp | 152 int Fat::format(const char *fsPath, unsigned int numSectors) { function in class:Fat
|
/system/media/opensles/tests/sandbox/ |
H A D | configbq.c | 95 PCM *format; local 98 for (format = formats; format->numChannels; ++format) { 100 printf("Channels: %d, sample rate: %lu, bits: %u\n", format->numChannels, 101 format->milliHz / 1000, format->bitsPerSample); 109 format_pcm.numChannels = format->numChannels; 110 format_pcm.samplesPerSec = format->milliHz; 111 format_pcm.bitsPerSample = format [all...] |
/system/core/libacc/tests/ |
H A D | disassem.cpp | 61 * General instruction format 65 * Those fields with an uppercase format code indicate that the field 110 const char* format; member in struct:arm32_insn 335 f_ptr = i_ptr->format;
|
/system/core/libpixelflinger/ |
H A D | buffer.cpp | 64 dst->format = src->format; 67 const GGLFormat& pixelFormat(c->formats[dst->format]); 76 switch (s->format) { 116 const GGLFormat* f = &(c->formats[s->format]); 173 const GGLFormat* f = &(c->formats[s->format]); 257 uint32_t ggl_pack_color(context_t* c, int32_t format, argument 260 const GGLFormat* f = &(c->formats[format]);
|
/system/core/libpixelflinger/codeflinger/ |
H A D | disassem.c | 60 * General instruction format 64 * Those fields with an uppercase format code indicate that the field 110 char* format; member in struct:arm32_insn 336 f_ptr = i_ptr->format;
|
H A D | ARMAssembler.cpp | 179 const char * const format = "generated %s (%d ins) at [%p:%p] in %lld ns\n"; local 180 LOGI(format, name, int(pc()-base()), base(), pc(), duration); 192 printf(format, name, int(pc()-base()), base(), pc(), duration);
|
H A D | GGLAssembler.h | 224 memset(&format, 0, sizeof(GGLFormat)); 227 : reg_t(r, f), format(*fmt) { 230 reg_t::setTo(r, f); format = *fmt; 232 GGLFormat format; member in struct:android::GGLAssembler::pixel_t 233 inline int hi(int c) const { return format.c[c].h; } 234 inline int low(int c) const { return format.c[c].l; } 236 inline int size() const { return format.size*8; } 255 rhs.format.c[component].l, 256 rhs.format.c[component].h, 305 GGLFormat format; member in struct:android::GGLAssembler::texture_unit_t [all...] |
/system/extras/tests/bionic/libc/common/ |
H A D | test_pthread_mutex.c | 47 panic(const char* func, const char* format, ...) argument 51 va_start(args, format); 52 vfprintf(stderr, format, args); 61 error(int errcode, const char* func, const char* format, ...) argument 65 va_start(args, format); 66 vfprintf(stderr, format, args);
|
/system/core/liblog/ |
H A D | fake_log_device.c | 74 /* output format */ 273 LogFormat format; local 275 format = FORMAT_BRIEF; 278 format = FORMAT_BRIEF; 280 format = FORMAT_PROCESS; 282 format = FORMAT_PROCESS; 284 format = FORMAT_PROCESS; 286 format = FORMAT_PROCESS; 288 format = FORMAT_PROCESS; 290 format [all...] |
H A D | logprint.c | 41 AndroidLogPrintFormat format; member in struct:AndroidLogFormat_t 176 p_ret->format = FORMAT_BRIEF; 200 AndroidLogPrintFormat format) 202 p_format->format=format; 210 static AndroidLogPrintFormat format; local 212 if (strcmp(formatString, "brief") == 0) format = FORMAT_BRIEF; 213 else if (strcmp(formatString, "process") == 0) format = FORMAT_PROCESS; 214 else if (strcmp(formatString, "tag") == 0) format = FORMAT_TAG; 215 else if (strcmp(formatString, "thread") == 0) format 199 android_log_setPrintFormat(AndroidLogFormat *p_format, AndroidLogPrintFormat format) argument [all...] |
/system/core/logcat/ |
H A D | logcat.cpp | 399 " -v <format> Sets the log print format, where <format> is one of:\n\n" 423 "\nIf not specified with -v, format is set from ANDROID_PRINTF_LOG\n" 435 static AndroidLogPrintFormat format; local 437 format = android_log_formatFromString(formatString); 439 if (format == FORMAT_OFF) { 444 android_log_setPrintFormat(g_logformat, format); 685 fprintf(stderr, "invalid format in ANDROID_PRINTF_LOG '%s'\n",
|
/system/core/include/pixelflinger/ |
H A D | pixelflinger.h | 23 #include <pixelflinger/format.h> 193 GGLubyte format; // pixel format member in struct:__anon51 195 // these values are dependent on the used format
|
/system/core/include/private/pixelflinger/ |
H A D | ggl_context.h | 330 uint8_t format; member in struct:android::surface_t::__anon55::__anon56
|