Searched refs:format (Results 1 - 25 of 61) sorted by relevance

123

/system/core/libnl_2/
H A Ddbg.c4 void libnl_printf(int level, char *format, ...) argument
9 va_start(ap, format);
10 __android_log_vprint(level, "libnl_2", format, ap);
/system/vold/
H A DExt4.h26 static int format(const char *fsPath);
H A DFat.h29 static int format(const char *fsPath, unsigned int numSectors);
/system/core/include/sysutils/
H A DNetlinkListener.h37 NetlinkListener(int socket, int format);
39 NetlinkListener(int socket, int format = NETLINK_FORMAT_ASCII);
H A DNetlinkEvent.h41 bool decode(char *buffer, int size, int format = NetlinkListener::NETLINK_FORMAT_ASCII);
/system/core/include/android/
H A Dlog.h101 __attribute__ ((format(printf, 3, 4)))
120 __attribute__ ((format(printf, 3, 4)))
/system/core/adb/
H A Dutils.h56 char* buff_add (char* buff, char* buffEnd, const char* format, ... );
H A Dutils.c72 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
/system/core/libsysutils/src/
H A DNetlinkListener.cpp40 NetlinkListener::NetlinkListener(int socket, int format) : argument
41 SocketListener(socket, false), mFormat(format) {
/system/core/libpixelflinger/
H A Dformat.cpp1 /* libs/pixelflinger/format.cpp
19 #include <pixelflinger/format.h>
H A Dbuffer.h34 uint32_t ggl_pack_color(context_t* c, int32_t format,
/system/core/run-as/
H A Drun-as.c90 panic(const char* format, ...) argument
95 va_start(args, format);
96 vfprintf(stderr, format, args);
/system/core/debuggerd/
H A Dutility.h33 __attribute__ ((format(printf, 3, 4)));
/system/core/include/cutils/
H A Dklog.h24 __attribute__ ((format(printf, 2, 3)));
H A Dtztime.h52 size_t strftime_tz(char *s, size_t max, const char *format, const struct tm *tm, const struct strftime_locale *locale);
/system/netd/
H A DNetlinkHandler.h27 NetlinkHandler(NetlinkManager *nm, int listenerSocket, int format);
H A DNetlinkManager.h60 int format);
/system/bluetooth/data/
H A Dblacklist.conf1 // Do NOT change this file format without updating the parsing logic in
/system/core/libcutils/
H A Dtzstrftime.c96 strftime_tz(s, maxsize, format, t, Locale)
99 const char * const format;
107 p = _fmt(((format == NULL) ? "%c" : format), t, s, s + maxsize, &warn, Locale);
111 if (format == NULL)
112 (void) fprintf(stderr, "NULL strftime format ");
113 else (void) fprintf(stderr, "strftime format \"%s\" ",
114 format);
147 _fmt(format, t, pt, ptlim, warnp, Locale)
148 const char * format;
[all...]
/system/extras/tests/bionic/libc/bionic/
H A Dtest_mutex.c35 static void panic( const char* format, ... ) argument
38 va_start(args, format);
39 vfprintf(stderr, format, args);
/system/core/liblog/
H A Dlogprint.c41 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...]
H A Dfake_log_device.c74 /* 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...]
/system/core/include/system/
H A Daudio.h100 /* MP3 sub format field definition : can use 11 LSBs in the same way as MP3
107 /* AMR NB/WB sub format field definition: specify frame block interleaving,
114 /* AAC sub format field definition: specify profile or bitrate for recording... */
119 /* VORBIS sub format field definition: specify quality for recording... */
124 /* Audio format consists in a main format field (upper 8 bits) and a sub format
127 * The main format indicates the main codec type. The sub format field
128 * indicates options and parameters for each format
508 audio_is_valid_format(audio_format_t format) argument
529 audio_is_linear_pcm(audio_format_t format) argument
534 audio_bytes_per_sample(audio_format_t format) argument
[all...]
H A Dwindow.h106 int format; member in struct:ANativeWindowBuffer
677 * native_window_set_buffers_geometry(..., int w, int h, int format)
678 * All buffers dequeued after this call will have the dimensions and format
687 int w, int h, int format)
690 w, h, format);
740 * native_window_set_buffers_format(..., int format)
741 * All buffers dequeued after this call will have the format specified.
743 * If the specified format is 0, the default buffer format will be used.
747 int format)
685 native_window_set_buffers_geometry( struct ANativeWindow* window, int w, int h, int format) argument
745 native_window_set_buffers_format( struct ANativeWindow* window, int format) argument
[all...]
/system/extras/tests/bionic/libc/common/
H A Dtest_pthread_rwlock.c46 panic(const char* func, const char* format, ...) argument
50 va_start(args, format);
51 vfprintf(stderr, format, args);
60 error(int errcode, const char* func, const char* format, ...) argument
64 va_start(args, format);
65 vfprintf(stderr, format, args);

Completed in 181 milliseconds

123