/device/google/cuttlefish/host/commands/logcat_receiver/ |
D | main.cpp | 68 char buff[1024]; in main() local 69 auto read = pipe->Read(buff, sizeof(buff)); in main() 74 auto written = cuttlefish::WriteAll(logcat_file, buff, read); in main()
|
/device/google/cuttlefish/host/commands/tombstone_receiver/ |
D | main.cpp | 77 char buff[CHUNK_RECV_MAX_LEN]; in main() local 78 auto bytes_read = conn->Read(buff, sizeof(buff)); in main() 83 file.write(buff, bytes_read); in main()
|
/device/google/cuttlefish/guest/hals/gps/ |
D | gps_thread.cpp | 176 char buff[256]; in gps_state_thread() local 179 ret = read(fd, buff, sizeof(buff)); in gps_state_thread() 187 D("Thread received %d bytes: %.*s", ret, ret, buff); in gps_state_thread() 188 reader_accept_string(&reader, buff, ret); in gps_state_thread()
|
/device/generic/goldfish/camera/ |
D | JpegCompressor.cpp | 44 typedef void (*GetCompressedImageFunc)(JpegStub* stub, void* buff); 87 void NV21JpegCompressor::getCompressedImage(void* buff) in getCompressedImage() argument 91 (*f)(&mStub, buff); in getCompressedImage()
|
D | JpegCompressor.h | 79 void getCompressedImage(void* buff);
|
/device/google/cuttlefish/guest/hals/camera/ |
D | JpegCompressor.cpp | 44 typedef void (*GetCompressedImageFunc)(JpegStub* stub, void* buff); 86 void NV21JpegCompressor::getCompressedImage(void* buff) { in getCompressedImage() argument 89 (*f)(&mStub, buff); in getCompressedImage()
|
D | JpegStub.cpp | 56 extern "C" void JpegStub_getCompressedImage(JpegStub* stub, void* buff) { in JpegStub_getCompressedImage() argument 60 memcpy(buff, &data[0], data.size()); in JpegStub_getCompressedImage()
|
D | JpegCompressor.h | 74 void getCompressedImage(void* buff);
|
D | JpegStub.h | 39 void JpegStub_getCompressedImage(JpegStub* stub, void* buff);
|
/device/google/cuttlefish/host/libs/screen_connector/ |
D | socket_based_screen_connector.cpp | 80 auto buff = reinterpret_cast<uint8_t*>(GetBuffer(current_buffer)); in ServerLoop() local 82 auto read = conn->Read(buff, size); in ServerLoop() 89 buff += read; in ServerLoop()
|
/device/google/cuttlefish/common/libs/fs/ |
D | shared_buf.cc | 66 char buff[BUFF_SIZE]; in ReadAll() local 69 while ((read = fd->Read(buff, BUFF_SIZE - 1)) > 0) { in ReadAll() 71 ss << std::string(buff, read); in ReadAll()
|
/device/google/cuttlefish/guest/hals/hwcomposer/cutf_cvm/ |
D | vsocket_screen_view.cpp | 106 auto buff = static_cast<char*>(GetBuffer(current_offset)); in BroadcastLoop() local 108 auto written = screen_server_->Write(buff, size); in BroadcastLoop() 114 buff += written; in BroadcastLoop()
|
/device/google/cuttlefish/host/libs/vm_manager/ |
D | qemu_manager.cpp | 77 char buff[1000]; in Stop() local 78 while ((len = monitor_sock->Read(buff, sizeof(buff) - 1)) > 0) { in Stop() 79 buff[len] = '\0'; in Stop() 80 LOG(INFO) << "From qemu monitor: " << buff; in Stop()
|
/device/google/cuttlefish/guest/hals/ril/reference-ril/ |
D | atchannel.h | 29 extern void AT_DUMP(const char* prefix, const char* buff, int len); 31 #define AT_DUMP(prefix,buff,len) do{}while(0)
|
D | atchannel.c | 55 void AT_DUMP(const char* prefix __unused, const char* buff, int len) in AT_DUMP() argument 58 len = strlen(buff); in AT_DUMP() 59 RLOGD("%.*s", len, buff); in AT_DUMP()
|
/device/generic/goldfish/camera/jpeg-stub/ |
D | JpegStub.cpp | 56 extern "C" void JpegStub_getCompressedImage(JpegStub* stub, void* buff) { in JpegStub_getCompressedImage() argument 60 memcpy(buff, &data[0], data.size()); in JpegStub_getCompressedImage()
|
D | JpegStub.h | 39 void JpegStub_getCompressedImage(JpegStub* stub, void* buff);
|
/device/generic/goldfish/radio/ril/ |
D | atchannel.h | 29 extern void AT_DUMP(const char* prefix, const char* buff, int len); 31 #define AT_DUMP(prefix,buff,len) do{}while(0)
|
D | atchannel.c | 56 void AT_DUMP(const char* prefix, const char* buff, int len) in AT_DUMP() argument 59 len = strlen(buff); in AT_DUMP() 60 RLOGD("%.*s", len, buff); in AT_DUMP()
|
/device/generic/opengl-transport/host/commands/emugen/ |
D | ApiGen.cpp | 391 Var& var, EntryPoint* e, char* buff, size_t bufflen, in getVarEncodingSizeExpression() argument 395 snprintf(buff, bufflen, "%u", (unsigned int) var.type()->bytes()); in getVarEncodingSizeExpression() 400 snprintf(buff, bufflen, "8"); in getVarEncodingSizeExpression() 403 snprintf(buff, bufflen, "0"); in getVarEncodingSizeExpression() 405 snprintf(buff, bufflen, "__size_%s", var.name().c_str()); in getVarEncodingSizeExpression() 414 snprintf(buff, bufflen, "((%s != NULL) ? %s : 0)", varname, lenExpr); in getVarEncodingSizeExpression() 416 snprintf(buff, bufflen, "%s", lenExpr); in getVarEncodingSizeExpression() 587 char buff[256]; in genEncoderImpl() local 600 getVarEncodingSizeExpression(var, e, buff, sizeof(buff), in genEncoderImpl() 602 fprintf(fp, "%s;\n", buff); in genEncoderImpl() [all …]
|
/device/google/cuttlefish/guest/hals/hwcomposer/common/ |
D | base_composer.h | 38 virtual void Dump(char* buff, int buff_len);
|
D | stats_keeper.h | 210 void Dump(char* buff, int buff_len) override { in Dump() argument 211 stats_keeper_.SynchronizedDump(buff, buff_len); in Dump()
|
D | base_composer.cpp | 29 void BaseComposer::Dump(char* buff __unused, int buff_len __unused) {} in Dump()
|
D | hwcomposer.cpp | 440 static void cvd_hwc_dump(hwc_composer_device_1_t* dev, char* buff, int buff_len) { in cvd_hwc_dump() argument 441 reinterpret_cast<cvd_hwc_composer_device_1_t*>(dev)->composer->Dump(buff, in cvd_hwc_dump()
|
/device/google/wahoo/ |
D | system.prop | 37 vendor.vidc.enc.dcvs.extra-buff-count=2
|