Searched refs:buff (Results 1 - 10 of 10) sorted by relevance

/development/tools/emulator/system/camera/
H A DJpegCompressor.h77 * buff - Buffer where to copy the JPEG. Must be large enough to contain the
80 void getCompressedImage(void* buff) const
82 mStream.copyTo(buff);
/development/tools/emulator/system/libqemu/
H A Dtest_util.h31 int pipe_send( Pipe* pipe, const void* buff, size_t bufflen );
32 int pipe_recv( Pipe* pipe, void* buff, size_t bufflen );
H A Dtest_guest_1.c60 char buff[64]; local
68 int len = snprintf(buff, sizeof(buff), "Hello World %d\n", count);
70 int ret = pipe_send(pipe, buff, len);
90 if (memcmp(buff, buff2, len) != 0) {
H A Dtest_host_2.c111 char buff[8192], *p; local
114 ret = TFR(read(client, buff, sizeof(buff)));
H A Dtest_util.c86 pipe_send( Pipe* pipe, const void* buff, size_t bufflen ) argument
89 const uint8_t* ptr = buff;
109 pipe_recv( Pipe* pipe, void* buff, size_t bufflen ) argument
114 ret = read(pipe->socket, buff, bufflen);
H A Dtest_host_1.c210 char buff[32768], *p; local
213 ret = TFR(read(client, buff, sizeof(buff)));
223 p = buff;
/development/tools/emulator/system/sensors/
H A Dsensors_qemu.c308 char buff[256]; local
309 int len = qemud_channel_recv(data->events_fd, buff, sizeof buff-1);
318 buff[len] = 0;
326 if (sscanf(buff, "acceleration:%g:%g:%g", params+0, params+1, params+2) == 3) {
335 if (sscanf(buff, "orientation:%g:%g:%g", params+0, params+1, params+2) == 3) {
344 if (sscanf(buff, "magnetic:%g:%g:%g", params+0, params+1, params+2) == 3) {
353 if (sscanf(buff, "temperature:%g", params+0) == 1) {
360 if (sscanf(buff, "proximity:%g", params+0) == 1) {
370 if (sscanf(buff, "syn
[all...]
/development/tools/emulator/system/qemud/
H A Dqemud.c569 static char* buff = NULL; local
573 xfree(buff);
574 buff = xalloc(count+1);
582 buff[count] = buff[count+1] = '\\';
590 buff[count] = c;
598 memcpy(buff+count, "<TAB>", 5);
605 memcpy(buff+count, "<LN>", 4);
612 memcpy(buff+count, "<CR>", 4);
619 buff[coun
1677 char buff[1024]; local
[all...]
/development/apps/Development/src/com/android/development/
H A DPermissionDetails.java222 StringBuilder buff = new StringBuilder();
223 buff.append(sharedList[0]);
225 buff.append(", ");
226 buff.append(sharedList[i]);
228 sharedView.setText(buff.toString());
/development/tools/emulator/system/gps/
H A Dgps_qemu.c731 char buff[32]; local
736 ret = read( fd, buff, sizeof(buff) );
744 D("received %d bytes: %.*s", ret, ret, buff);
746 nmea_reader_addc( reader, buff[nn] );

Completed in 99 milliseconds