Searched defs:format (Results 1 - 25 of 47) sorted by last modified time

12

/system/netd/
H A DNetlinkHandler.cpp32 int format) :
33 NetlinkListener(listenerSocket, format) {
31 NetlinkHandler(NetlinkManager *nm, int listenerSocket, int format) argument
H A DNetlinkManager.cpp54 int groups, int format) {
88 NetlinkHandler *handler = new NetlinkHandler(this, *sock, format);
53 setupSocket(int *sock, int netlinkFamily, int groups, int format) argument
/system/vold/
H A DFat.cpp154 int Fat::format(const char *fsPath, unsigned int numSectors) { function in class:Fat
/system/core/adb/
H A Dusb_vendors.c215 int build_path(char* buff, size_t len, const char* format, const char* home) argument
217 if (snprintf(buff, len, format, home, ANDROID_PATH, ANDROID_ADB_INI) >= (signed)len) {
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/include/pixelflinger/
H A Dpixelflinger.h23 #include <pixelflinger/format.h>
193 GGLubyte format; // pixel format member in struct:__anon309
195 // these values are dependent on the used format
/system/core/include/private/pixelflinger/
H A Dggl_context.h330 uint8_t format; member in struct:android::surface_t::__anon313::__anon314
/system/core/include/system/
H A Daudio.h97 /* MP3 sub format field definition : can use 11 LSBs in the same way as MP3
104 /* AMR NB/WB sub format field definition: specify frame block interleaving,
111 /* AAC sub format field definition: specify profile or bitrate for recording... */
116 /* VORBIS sub format field definition: specify quality for recording... */
121 /* Audio format consists in a main format field (upper 8 bits) and a sub format
124 * The main format indicates the main codec type. The sub format field
125 * indicates options and parameters for each format
385 audio_is_valid_format(uint32_t format) argument
406 audio_is_linear_pcm(uint32_t format) argument
411 audio_bytes_per_sample(uint32_t format) argument
[all...]
H A Dwindow.h93 int format; member in struct:ANativeWindowBuffer
510 * native_window_set_buffers_geometry(..., int w, int h, int format)
511 * All buffers dequeued after this call will have the dimensions and format
520 int w, int h, int format)
523 w, h, format);
548 * native_window_set_buffers_format(..., int format)
549 * All buffers dequeued after this call will have the format specified.
551 * If the specified format is 0, the default buffer format will be used.
555 int format)
518 native_window_set_buffers_geometry( struct ANativeWindow* window, int w, int h, int format) argument
553 native_window_set_buffers_format( struct ANativeWindow* window, int format) argument
[all...]
/system/core/liblog/
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...]
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...]
/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/core/libpixelflinger/
H A Dbuffer.cpp64 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 DARMAssembler.cpp179 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 DGGLAssembler.h224 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...]
H A Ddisassem.c60 * General instruction format
64 * Those fields with an uppercase format code indicate that the field
112 char* format; member in struct:arm32_insn
339 f_ptr = i_ptr->format;
/system/core/libsysutils/src/
H A DNetlinkEvent.cpp210 bool NetlinkEvent::decode(char *buffer, int size, int format) { argument
211 if (format == NetlinkListener::NETLINK_FORMAT_BINARY) {
H A DNetlinkListener.cpp40 NetlinkListener::NetlinkListener(int socket, int format) : argument
41 SocketListener(socket, false), mFormat(format) {
/system/core/logcat/
H A Dlogcat.cpp404 " -v <format> Sets the log print format, where <format> is one of:\n\n"
429 "\nIf not specified with -v, format is set from ANDROID_PRINTF_LOG\n"
441 static AndroidLogPrintFormat format; local
443 format = android_log_formatFromString(formatString);
445 if (format == FORMAT_OFF) {
450 android_log_setPrintFormat(g_logformat, format);
691 fprintf(stderr, "invalid format in ANDROID_PRINTF_LOG '%s'\n",
/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/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/extras/tests/bionic/libc/common/
H A Dtest_pthread_mutex.c47 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);
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);
/system/media/mca/filterfw/java/android/filterfw/core/
H A DCachedFrameManager.java44 public Frame newFrame(FrameFormat format) { argument
45 Frame result = findAvailableFrame(format, Frame.NO_BINDING, 0);
47 result = super.newFrame(format);
54 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) { argument
55 Frame result = findAvailableFrame(format, bindingType, bindingId);
57 result = super.newBoundFrame(format, bindingType, bindingId);
130 private Frame findAvailableFrame(FrameFormat format, int bindingType, long bindingId) { argument
131 // Look for a frame that is compatible with the requested format
135 // Check that format is compatible
136 if (frame.getFormat().isReplaceableBy(format)) {
[all...]
H A DFilter.java25 import android.filterfw.format.ObjectFormat;
308 * filter has input ports. When type-checking is performed, the input format is
309 * checked against the provided format mask. An exception is thrown in case of a conflict.
312 * @param formatMask a format mask, which filters the allowable input types
322 * Adds an output port to the filter with a fixed output format. You should call this from
324 * output format depends on the input format (e.g. in a pass-through filter). In this case, use
328 * @param format the fixed output format of this port
330 protected void addOutputPort(String name, FrameFormat format) { argument
[all...]

Completed in 8620 milliseconds

12