/device/generic/goldfish/input/ |
D | qwerty2.kcm | 22 label: 'A' 31 label: 'B' 40 label: 'C' 49 label: 'D' 58 label: 'E' 67 label: 'F' 76 label: 'G' 85 label: 'H' 94 label: 'I' 103 label: 'J' [all …]
|
/device/google/cuttlefish/host/frontend/webrtc/doc/ |
D | interface.dot | 3 audio_server [label = "internal/audio_server.sock", shape = "rectangle"] 4 browser [label = "Browser"] 5 confirmationui_sign [label = "internal/confui_sign.sock", shape = "rectangle"] 7 gnss_grpc_server [label = "GNSS gRPC server", shape = "rectangle"] 8 host_bluetooth [label = "Host bluetooth (netsim / rootcanal)"] 9 host_confirmationui_in [label = "internal/confui_fifo_vm.in", shape = "rectangle"] 10 host_confirmationui_out [label = "internal/confui_fifo_vm.out", shape = "rectangle"] 11 keyboard_server [label = "internal/keyboard.sock", shape = "rectangle"] 12 touch_server [label = "internal/touch_N.sock", shape = "rectangle"] 17 wayland_socket [label = "internal/frames.sock", shape = "rectangle"] [all …]
|
D | graphics.dot | 5 browser [label = "Browser"] 6 vnc_client [label = "VNC Client"] 8 host_renderer [label = < <font color="blue">gfxstream</font> / virglrenderer >] 10 wayland_socket [label = "internal/frames.sock", shape = "rectangle"] 11 webrtc [label = < <b>webrtc</b> >, penwidth = 2] 12 vmm [label = < <font color="blue">crosvm</font> / <font color="red">qemu</font> >] 15 label = "Cuttlefish VM" 18 drm_card [label = "/dev/dri/card0", shape = "rectangle"] 19 drm_render [label = "/dev/dri/renderD128", shape = "rectangle"] 25 hwcomposer_drm [label = "hwcomposer.drm"] [all …]
|
/device/google/cuttlefish/host/commands/secure_env/doc/ |
D | linkage.dot | 2 browser [label = "Browser"] 3 confirmationui_sign [color = "red", label = "internal/confui_sign.sock", shape = "rectangle"] 5 secure_env [label = < <B>secure_env</B> >, penwidth=2] 6 vmm [label = "crosvm / qemu"] 12 host_keymaster_in [color = "blue", label = "internal/keymaster_fifo_vm.in", shape = "rectangle"] 13 … host_keymaster_out [color = "blue", label = "internal/keymaster_fifo_vm.out", shape = "rectangle"] 14 …host_gatekeeper_in [color = "green", label = "internal/gatekeeper_fifo_vm.in", shape = "rectangle"] 15 …host_gatekeeper_out [color = "green", label = "internal/gatekeeper_fifo_vm.out", shape = "rectangl… 16 … host_confirmationui_in [color = "red", label = "internal/confui_fifo_vm.in", shape = "rectangle"] 17 …host_confirmationui_out [color = "red", label = "internal/confui_fifo_vm.out", shape = "rectangle"] [all …]
|
/device/google/cuttlefish/host/commands/run_cvd/doc/ |
D | linkage.dot | 11 launcher_monitor_socket [label = "launcher_monitor.sock", shape = "rectangle"] 17 run_cvd [label = < <b>run_cvd</b> >, penwidth = "2"] 18 run_cvd_2 [label = "run_cvd", style = "dashed"] 19 run_cvd_etc [label = "...", style = "dashed"] 25 label = "ADB" 32 label = "Bluetooth" 36 root_canal [label = "root-canal"] 37 root_canal_log_tee [label = "log_tee"] 41 label = "NFC" 44 casimir [label = "casimir (NFC rootcanal)"] [all …]
|
/device/google/cuttlefish/host/frontend/webrtc/libdevice/ |
D | recording_manager.cpp | 46 const std::string& label) { in AddSource() argument 55 sources_[label] = std::move(source); in AddSource() 58 StartSingleRecorder(label); in AddSource() 63 void RecordingManager::RemoveSource(const std::string& label) { in RemoveSource() argument 67 auto existing_recorder = local_recorders_.find(label); in RemoveSource() 73 sources_.erase(label); in RemoveSource() 84 for (auto& [label, source] : sources_) { in Start() 85 StartSingleRecorder(label); in Start() 97 for (auto& [label, local_recorder] : local_recorders_) { in Stop() 112 void RecordingManager::StartSingleRecorder(const std::string& label) { in StartSingleRecorder() argument [all …]
|
D | streamer.cpp | 244 std::shared_ptr<VideoSink> Streamer::AddDisplay(const std::string& label, in AddDisplay() argument 249 [this, &label, width, height, dpi, in AddDisplay() 251 if (impl_->displays_.count(label)) { in AddDisplay() 252 LOG(ERROR) << "Display with same label already exists: " << label; in AddDisplay() 257 impl_->displays_[label] = {width, height, dpi, touch_enabled, source}; in AddDisplay() 260 label, source.get()); in AddDisplay() 263 client->AddDisplay(video_track, label); in AddDisplay() 274 impl_->recording_manager_->AddSource(width, height, source_shared, label); in AddDisplay() 282 bool Streamer::RemoveDisplay(const std::string& label) { in RemoveDisplay() argument 285 [this, &label]() -> bool { in RemoveDisplay() [all …]
|
D | client_handler.cpp | 92 const std::string &label) { in AddTrackToConnection() argument 98 peer_connection->AddTrack(track, {label} /* stream_id */); in AddTrackToConnection() 108 const std::string &label) { in AddDisplay() argument 109 auto [it, inserted] = displays_.emplace(label, DisplayTrackAndSender{ in AddDisplay() 113 AddTrackToConnection(video_track, controller_.peer_connection(), label); in AddDisplay() 122 bool ClientHandler::RemoveDisplay(const std::string &label) { in RemoveDisplay() argument 123 auto it = displays_.find(label); in RemoveDisplay() 133 LOG(ERROR) << "Failed to remove video track for display " << label << ": " in RemoveDisplay() 145 const std::string &label) { in AddAudio() argument 146 audio_streams_.emplace_back(audio_track, label); in AddAudio() [all …]
|
D | data_channels.cpp | 107 auto label = evt["device_label"].asString(); in OnMessageInner() local 112 CF_EXPECT(observer()->OnTouchEvent(label, x, y, down)); in OnMessageInner() 122 auto label = evt["device_label"].asString(); in OnMessageInner() local 130 CF_EXPECT(observer()->OnMultiTouchEvent(label, idArr, slotArr, xArr, yArr, in OnMessageInner() 357 << channel()->label(); in OnMessageInner() 404 LOG(VERBOSE) << channel()->label() << " channel state changed to " in OnStateChange() 429 auto label = channel->label(); in OnDataChannelOpen() local 430 LOG(VERBOSE) << "Data channel connected: " << label; in OnDataChannelOpen() 431 if (label == kInputChannelLabel) { in OnDataChannelOpen() 434 } else if (label == kControlChannelLabel) { in OnDataChannelOpen() [all …]
|
D | streamer.h | 85 std::shared_ptr<VideoSink> AddDisplay(const std::string& label, int width, 88 bool RemoveDisplay(const std::string& label); 90 bool AddTouchpad(const std::string& label, int width, int height); 99 std::shared_ptr<AudioSink> AddAudioStream(const std::string& label);
|
D | client_handler.h | 66 const std::string& label); 67 bool RemoveDisplay(const std::string& label); 70 const std::string& label); 111 const std::string& label);
|
D | local_recorder.cpp | 121 const std::string& label, size_t width, size_t height, in AddDisplay() argument 123 LOG(ERROR) << "Display added with label '" << label << "'"; in AddDisplay() 127 auto existing_display = impl_->displays_.find(label); in AddDisplay() 188 impl_->displays_[label] = std::move(display); in AddDisplay() 192 for (auto& [label, display] : impl_->displays_) { in Stop()
|
D | recording_manager.h | 49 const std::string& label); 50 void RemoveSource(const std::string& label); 65 void StartSingleRecorder(const std::string& label);
|
/device/google/cuttlefish/host/commands/gnss_grpc_proxy/doc/ |
D | linkage.dot | 2 browser [label = "Browser"] 3 cli [label = "User CLI"] 6 gnss_grpc_proxy [label = < <B>gnss_grpc_proxy</B> >] 7 gnss_grpc_server [label = "TCP gRPC", shape = "rectangle"] 9 vmm [label = "crosvm / qemu"] 13 … host_gnss_console_in [color = "green", label = "internal/gnsshvc_fifo_vm.in", shape = "rectangle"] 14 …host_gnss_console_out [color = "green", label = "internal/gnsshvc_fifo_vm.out", shape = "rectangle… 15 …host_fixed_location_console_in [color = "blue", label = "internal/locationhvc_fifo_vm.in", shape =… 16 …host_fixed_location_console_out [color = "blue", label = "internal/locationhvc_fifo_vm.out", shape… 19 label = "Android" [all …]
|
/device/google/cuttlefish/host/frontend/adb_connector/doc/ |
D | linkage.dot | 2 adb_connector [label = < <B>adb_connector</B> >, penwidth = "2"] 3 adb_client [label = "ADB command line interface"] 4 adb_server [label = "ADB Server"] 5 user [label = "User input"] 6 vmm [label = "crosvm / qemu"] 7 host_vsock [label = "/dev/vhost_vsock", shape = "rectangle"] 9 adb_daemon [label = "ADB Daemon"] 10 android_vsock [label = "/dev/vhost_vsock", shape = "rectangle"] 11 shell [label = "toybox / sh"]
|
/device/google/cuttlefish/host/commands/console_forwarder/doc/ |
D | linkage.dot | 2 console_forwarder [label = < <B>console_forwarder</B> >, penwidth = 2] 3 host_console_in [label = "internal/console.in", shape = "rectangle"] 4 host_console_out [label = "internal/console.out", shape = "rectangle"] 5 host_pty [label = "/dev/pty/###", shape = "rectangle"] 8 user [label = "User CLI"] 9 vmm [label = "crosvm / qemu"] 11 label = "Android VM" 12 vm_console [label = "/dev/ttyS0", shape = "rectangle"] 13 shell [label = "toybox / sh"]
|
/device/google/cuttlefish/host/commands/assemble_cvd/ |
D | disk_flags.cc | 267 .label = "STATE", in chromeos_composite_disk_config() 273 .label = "linux_esp", in chromeos_composite_disk_config() 279 .label = "linux_root", in chromeos_composite_disk_config() 293 .label = "linux_esp", in linux_composite_disk_config() 299 .label = "linux_root", in linux_composite_disk_config() 312 .label = "fuchsia_esp", in fuchsia_composite_disk_config() 326 .label = "misc", in android_composite_disk_config() 331 .label = "boot_a", in android_composite_disk_config() 336 .label = "boot_b", in android_composite_disk_config() 343 .label = "init_boot_a", in android_composite_disk_config() [all …]
|
/device/google/cuttlefish/host/commands/assemble_cvd/doc/ |
D | disk.dot | 4 overlay [label = "Operating System Overlay (qcow2)", URL = "https://en.wikipedia.org/wiki/Qcow"] 5 …operating_system [label = "Operating System (composite)", URL = "https://source.android.com/docs/c… 6 …persistent [label = "Persistent Disk (composite)", URL = "https://chromium.googlesource.com/chromi… 9 …persistent_vbmeta [label = "vbmeta", URL = "https://android.googlesource.com/platform/external/avb… 13 gpt_header [label = "GPT Header", URL = "https://en.wikipedia.org/wiki/GUID_Partition_Table"] 15 …boot [label = "boot_[ab]", URL = "https://source.android.com/docs/core/architecture/bootloader/boo… 16 …init_boot [label = "init_boot_[ab]", URL = "https://source.android.com/docs/core/architecture/boot… 17 …vendor_boot [label = "vendor_boot_[ab]", URL = "https://source.android.com/docs/core/architecture/… 18 …vbmeta [label = "vbmeta_[ab]", URL = "https://android.googlesource.com/platform/external/avb/+/mas… 19 …vbmeta_system [label = "vbmeta_system_[ab]", URL = "https://android.googlesource.com/platform/exte… [all …]
|
/device/google/cuttlefish/host/frontend/webrtc/html_client/js/ |
D | cf_webrtc.js | 17 function createDataChannel(pc, label, onMessage) { argument 18 console.debug('creating data channel: ' + label); 19 let dataChannel = pc.createDataChannel(label); 30 'Data channel=' + label + ' state=' + dataChannel.readyState); 33 console.debug('Data channel=' + label + ' data="' + msg.data + '"'); 48 function awaitDataChannel(pc, label, onMessage) { argument 49 console.debug('expecting data channel: ' + label); 57 if (dataChannel.label == label) { 63 'Data channel=' + label + ' state=' + dataChannel.readyState); 66 console.debug('Data channel=' + label + ' data="' + msg.data + '"'); [all …]
|
/device/google/trout/tools/ |
D | bpttool | 718 self.label = '' 737 self.label = pobj[JSON_KEYWORD_PARTITIONS_LABEL] 796 str(self.guid), self.label)) 803 str(self.type_guid), self.label)) 933 label = pobj[JSON_KEYWORD_PARTITIONS_LABEL] 934 if label.endswith(settings.ab_suffixes[0]): 936 new_len = len(label) - len(settings.ab_suffixes[0]) 937 pobj[JSON_KEYWORD_PARTITIONS_LABEL] = label[0:new_len] 946 if candidate.label == pobj[JSON_KEYWORD_PARTITIONS_LABEL]: 1003 ' }}{}\n').format(p.label, [all …]
|
/device/google/cuttlefish/host/commands/assemble_cvd/disk/ |
D | initialize_instance_composite_disk.cc | 42 .label = "uboot_env", in PersistentCompositeDiskConfig() 46 .label = "vbmeta", in PersistentCompositeDiskConfig() 51 .label = "frp", in PersistentCompositeDiskConfig() 58 .label = "bootconfig", in PersistentCompositeDiskConfig() 73 .label = "uboot_env", in PersistentAPCompositeDiskConfig() 77 .label = "vbmeta", in PersistentAPCompositeDiskConfig()
|
/device/google/cuttlefish/common/libs/utils/ |
D | socket2socket_proxy.cpp | 87 void Forward(const std::string& label, SharedFD from, SharedFD to, in Forward() argument 89 LOG(DEBUG) << label << ": Proxy thread started. Starting copying data"; in Forward() 93 LOG(ERROR) << label << ": Error reading: " << from->StrError(); in Forward() 96 LOG(ERROR) << label << ": Error writing: " << to->StrError(); in Forward() 101 LOG(DEBUG) << label << ": Proxy thread completed"; in Forward()
|
/device/google/cuttlefish/host/frontend/webrtc/html_client/ |
D | style.css | 32 --bt-label-fg: green; 33 --bt-label-invalid-fg: red; 59 --bt-label-fg: green; 60 --bt-label-invalid-fg: #c3413d; /* light red */ 203 color: var(--bt-label-invalid-fg); 208 color: var(--bt-label-fg); 222 #bluetooth-console-cmd-label {
|
/device/generic/goldfish/tools/ |
D | mk_qemu_image.sh | 17 label="${base_srcimg%.*}" 19 target=${dir_name}/$label-qemu.img 43 ${SGDISK:-sgdisk} --new=1:2048:$end --type=1:8300 --change-name=1:$label $target > /dev/null 2>&1
|
/device/google/cuttlefish/host/libs/image_aggregator/ |
D | image_aggregator.cc | 238 .label = source.label, in ToMultipleImagePartition() 283 << "read-write partition " << source.label in AppendPartition() 386 std::u16string wide_name(partitions_[i].source.label.begin(), in Beginning() 387 partitions_[i].source.label.end()); in Beginning()
|