Home
last modified time | relevance | path

Searched refs:label (Results 1 – 25 of 56) sorted by relevance

123

/device/google/cuttlefish/host/frontend/webrtc/doc/
Dinterface.dot3 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 …]
Dgraphics.dot5 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/
Dlinkage.dot2 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/
Dlinkage.dot11 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 = "VMM"
43 crosvm_android [label = "Android crosvm"]
[all …]
/device/google/cuttlefish/host/commands/gnss_grpc_proxy/doc/
Dlinkage.dot2 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/webrtc/libdevice/
Dclient_handler.cpp92 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 …]
Ddata_channels.cpp114 auto label = evt["display_label"].asString(); in OnMessageInner() local
119 observer()->OnTouchEvent(label, x, y, down); in OnMessageInner()
134 auto label = evt["display_label"].asString(); in OnMessageInner() local
142 observer()->OnMultiTouchEvent(label, idArr, slotArr, xArr, yArr, down, in OnMessageInner()
322 << channel()->label(); in OnMessageInner()
368 LOG(VERBOSE) << channel()->label() << " channel state changed to " in OnStateChange()
390 auto label = channel->label(); in OnDataChannelOpen() local
391 LOG(VERBOSE) << "Data channel connected: " << label; in OnDataChannelOpen()
392 if (label == kInputChannelLabel) { in OnDataChannelOpen()
395 } else if (label == kControlChannelLabel) { in OnDataChannelOpen()
[all …]
Dstreamer.cpp230 std::shared_ptr<VideoSink> Streamer::AddDisplay(const std::string& label, in AddDisplay() argument
235 [this, &label, width, height, dpi, in AddDisplay()
237 if (impl_->displays_.count(label)) { in AddDisplay()
238 LOG(ERROR) << "Display with same label already exists: " << label; in AddDisplay()
243 impl_->displays_[label] = {width, height, dpi, touch_enabled, source}; in AddDisplay()
246 label, source.get()); in AddDisplay()
249 client->AddDisplay(video_track, label); in AddDisplay()
268 bool Streamer::RemoveDisplay(const std::string& label) { in RemoveDisplay() argument
271 [this, &label]() -> bool { in RemoveDisplay()
273 client->RemoveDisplay(label); in RemoveDisplay()
[all …]
Dclient_handler.h65 const std::string& label);
66 bool RemoveDisplay(const std::string& label);
69 const std::string& label);
110 const std::string& label);
Dstreamer.h75 std::shared_ptr<VideoSink> AddDisplay(const std::string& label, int width,
78 bool RemoveDisplay(const std::string& label);
87 std::shared_ptr<AudioSink> AddAudioStream(const std::string& label);
/device/google/cuttlefish/host/frontend/adb_connector/doc/
Dlinkage.dot2 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/
Dlinkage.dot2 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/doc/
Ddisk.dot4 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/
Dcf_webrtc.js17 function createDataChannel(pc, label, onMessage) { argument
18 console.debug('creating data channel: ' + label);
19 let dataChannel = pc.createDataChannel(label);
29 'Data channel=' + label + ' state=' + dataChannel.readyState);
32 console.debug('Data channel=' + label + ' data="' + msg.data + '"');
47 function awaitDataChannel(pc, label, onMessage) { argument
48 console.debug('expecting data channel: ' + label);
56 if (dataChannel.label == label) {
62 'Data channel=' + label + ' state=' + dataChannel.readyState);
65 console.debug('Data channel=' + label + ' data="' + msg.data + '"');
[all …]
/device/google/cuttlefish/host/commands/assemble_cvd/
Ddisk_flags.cc208 .label = "linux_esp", in linux_composite_disk_config()
214 .label = "linux_root", in linux_composite_disk_config()
227 .label = "fuchsia_esp", in fuchsia_composite_disk_config()
241 .label = "misc", in android_composite_disk_config()
246 .label = "boot_a", in android_composite_disk_config()
251 .label = "boot_b", in android_composite_disk_config()
258 .label = "init_boot_a", in android_composite_disk_config()
263 .label = "init_boot_b", in android_composite_disk_config()
269 .label = "vendor_boot_a", in android_composite_disk_config()
274 .label = "vendor_boot_b", in android_composite_disk_config()
[all …]
/device/google/trout/tools/
Dbpttool718 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/common/libs/utils/
Dsocket2socket_proxy.cpp34 void Forward(const std::string& label, SharedFD from, SharedFD to) { in Forward() argument
35 LOG(DEBUG) << label << ": Proxy thread started. Starting copying data"; in Forward()
39 LOG(ERROR) << label << ": Error reading: " << from->StrError(); in Forward()
42 LOG(ERROR) << label << ": Error writing: " << to->StrError(); in Forward()
46 LOG(DEBUG) << label << ": Proxy thread completed"; in Forward()
/device/google/cuttlefish/host/commands/cvd/parser/doc/
Ddisk.dot9 boot_build [label = "build"]
19 metadata_size [label = "size"]
22 misc_size [label = "size"]
30 super_build [label = "build"]
Dvm.dot20 crosvm_binary_dir [label = "binary_dir"]
21 qemu_binary_dir [label = "binary_dir"]
22 gem5_binary_dir [label = "binary_dir"]
/device/generic/goldfish/tools/
Dmk_qemu_image.sh17 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/frontend/webrtc/html_client/
Dstyle.css31 --bt-label-fg: green;
32 --bt-label-invalid-fg: red;
57 --bt-label-fg: green;
58 --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/google/cuttlefish/host/libs/image_aggregator/
Dimage_aggregator.cc238 .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()
Dimage_aggregator.h33 std::string label; member
40 std::string label; member
/device/google/cuttlefish/host/commands/start/
Dlinkage.dot4 …cvd_internal_start [label = "launch_cvd / cvd_internal_start", URL = "https://cs.android.com/andro…
6 user [label = "User CLI"]
/device/google/cuttlefish/host/frontend/webrtc/
Dconnection_observer.h32 SharedFD GetTouchClientByLabel(const std::string& label) { in GetTouchClientByLabel()
33 return touch_clients[label]; in GetTouchClientByLabel()

123