/device/google/wahoo/sepolicy/vendor/ |
D | move-widevine-data-sh.te | 1 type move-widevine-data-sh, domain, coredomain; 2 type move-widevine-data-sh_exec, system_file_type, exec_type, file_type; 3 init_daemon_domain(move-widevine-data-sh); 5 typeattribute move-widevine-data-sh data_between_core_and_vendor_violators; 7 allow move-widevine-data-sh shell_exec:file rx_file_perms; 8 allow move-widevine-data-sh toolbox_exec:file rx_file_perms; 10 allow move-widevine-data-sh file_contexts_file:file { read getattr open }; 12 allow move-widevine-data-sh media_data_file:file { getattr setattr relabelfrom }; 13 allow move-widevine-data-sh media_data_file:dir { reparent rename rmdir setattr rw_dir_perms relab… 15 allow move-widevine-data-sh mediadrm_vendor_data_file:dir { create_dir_perms relabelto }; [all …]
|
/device/google/cuttlefish/host/commands/modem_simulator/ |
D | modem_simulator.cpp | 51 channel_monitor_ = std::move(channel_monitor); in Initialize() 81 modem_services_[kSimService] = std::move(simservice); in RegisterModemService() 82 modem_services_[kNetworkService] = std::move(netservice); in RegisterModemService() 83 modem_services_[kCallService] = std::move(callservice); in RegisterModemService() 84 modem_services_[kDataService] = std::move(dataservice); in RegisterModemService() 85 modem_services_[kSmsService] = std::move(smsservice); in RegisterModemService() 86 modem_services_[kSupService] = std::move(supservice); in RegisterModemService() 87 modem_services_[kStkService] = std::move(stkservice); in RegisterModemService() 88 modem_services_[kMiscService] = std::move(miscservice); in RegisterModemService()
|
/device/google/wahoo/vibrator/ |
D | service.cpp | 192 sp<IVibrator> vibrator = new Vibrator(std::move(activate), std::move(duration), in registerVibratorService() 193 std::move(state), std::move(rtpinput), std::move(mode), in registerVibratorService() 194 std::move(sequencer), std::move(scale), std::move(ctrlloop), std::move(lptrigger)); in registerVibratorService()
|
D | Vibrator.cpp | 71 mActivate(std::move(activate)), in Vibrator() 72 mDuration(std::move(duration)), in Vibrator() 73 mState(std::move(state)), in Vibrator() 74 mRtpInput(std::move(rtpinput)), in Vibrator() 75 mMode(std::move(mode)), in Vibrator() 76 mSequencer(std::move(sequencer)), in Vibrator() 77 mScale(std::move(scale)), in Vibrator() 78 mCtrlLoop(std::move(ctrlloop)), in Vibrator() 79 mLpTriggerEffect(std::move(lptrigger)) { in Vibrator()
|
/device/generic/goldfish-opengl/android-emu/android/base/synchronization/ |
D | AndroidMessageChannel.h | 136 mItems[pos] = std::move(msg); in send() 154 mItems[*pos] = std::move(msg); in trySend() 164 *msg = std::move(mItems[pos]); in receive() 173 Optional<T> msg(std::move(mItems[pos])); in receive() 185 *msg = std::move(mItems[*pos]); in tryReceive() 194 Optional<T> res(std::move(mItems[*pos])); in timedReceive()
|
/device/google/cuttlefish/common/libs/thread_safe_queue/ |
D | thread_safe_queue.h | 41 max_elements_handler_{std::move(max_elements_handler)} {} 48 auto t = std::move(items_.front()); in Pop() 58 return std::move(items_); in PopAll() 64 items_.push_back(std::move(t)); in Push()
|
/device/google/cuttlefish/host/frontend/vnc_server/ |
D | vnc_server.cpp | 41 StartClient(std::move(connection)); in MainLoop() 46 std::thread t(&VncServer::StartClientThread, this, std::move(sock)); in StartClient() 56 VncClientConnection client(std::move(sock), virtual_inputs_, &bb_, in StartClientThread()
|
D | frame_buffer_watcher.cpp | 85 stripe.raw_data = std::move(rotated); in Rotated() 170 auto stripes = {std::make_shared<Stripe>(std::move(portrait_stripe)), in Worker() 171 std::make_shared<Stripe>(std::move(landscape_stripe))}; in Worker()
|
D | simulated_hw_composer.cpp | 49 stripes_.Push(std::move(s)); in GetNewStripe() 115 stripes_.Push(std::move(s)); in MakeStripes()
|
/device/google/cuttlefish/host/commands/run_cvd/ |
D | launch.cc | 170 process_monitor->StartSubprocess(std::move(command), in LaunchKernelLogMonitor() 194 process_monitor->StartSubprocess(std::move(command), in LaunchLogcatReceiver() 211 process_monitor->StartSubprocess(std::move(cmd), in LaunchConfigServer() 247 process_monitor->StartSubprocess(std::move(cmd), in LaunchTombstoneReceiverIfEnabled() 263 process_monitor->StartSubprocess(std::move(vnc_server), callback); in LaunchVNCServer() 289 process_monitor->StartSubprocess(std::move(adb_connector), in LaunchAdbConnectorIfEnabled() 303 process_monitor->StartSubprocess(std::move(sig_server), in LaunchWebRTC() 320 process_monitor->StartSubprocess(std::move(webrtc), in LaunchWebRTC() 411 process_monitor->StartSubprocess(std::move(cmd), in LaunchModemSimulatorIfEnabled() 426 process_monitor->StartSubprocess(std::move(adb_tunnel), in LaunchSocketVsockProxyIfEnabled() [all …]
|
D | process_monitor.cc | 79 MonitorExistingSubprocess(std::move(cmd), std::move(proc), callback); in StartSubprocess() 88 entry.cmd.reset(new Command(std::move(cmd))); in MonitorExistingSubprocess() 89 entry.proc.reset(new Subprocess(std::move(proc))); in MonitorExistingSubprocess()
|
/device/google/crosshatch/vibrator/ |
D | impl.cpp | 146 return new Vibrator(std::move(activate), std::move(duration), std::move(effect), in makeVibratorService() 147 std::move(queue), std::move(scale)); in makeVibratorService()
|
D | Vibrator.cpp | 105 mActivate(std::move(activate)), in Vibrator() 106 mDuration(std::move(duration)), in Vibrator() 107 mEffectIndex(std::move(effect)), in Vibrator() 108 mEffectQueue(std::move(queue)), in Vibrator() 109 mScale(std::move(scale)) in Vibrator()
|
/device/generic/goldfish-opengl/system/OpenglSystemCommon/ |
D | QemuPipeStreamFuchsia.cpp | 84 std::move(channel)); in connect() 92 m_device->OpenPipe(std::move(pipe_server)); in connect() 95 std::move(pipe_client)); in connect() 111 auto result = m_pipe->SetEvent(std::move(event_copy)); in connect() 140 m_event = std::move(event); in connect() 183 vmo = std::move(result.Unwrap()->vmo); in allocBuffer() 197 m_vmo = std::move(vmo); in allocBuffer()
|
D | ProcessPipe.cpp | 71 std::move(channel)); in processPipeInitOnce() 81 std::move(pipe_client)); in processPipeInitOnce() 82 device.OpenPipe(std::move(pipe_server)); in processPipeInitOnce() 92 vmo = std::move(result.Unwrap()->vmo); in processPipeInitOnce()
|
/device/google/cuttlefish/host/commands/launch/ |
D | launch_cvd.cc | 175 auto assemble_proc = StartAssembler(std::move(assembler_stdin), in main() 176 std::move(assembler_stdout), in main() 180 WriteFiles(AvailableFilesReport(), std::move(launcher_report)); in main() 205 auto run_proc = StartRunner(std::move(runner_stdin_out), in main() 207 runners.push_back(std::move(run_proc)); in main()
|
/device/generic/goldfish-opengl/android-emu/android/base/ |
D | Optional.h | 202 new (&get()) T(std::move(other.get())); in Optional() 222 new (&get()) T(std::move(other.get())); in Optional() 229 Optional(T&& value) : base_flag(true) { new (&get()) T(std::move(value)); } in Optional() 273 get() = std::move(other.get()); 280 new (&get()) T(std::move(other.get())); 317 get() = std::move(other.get()); 324 new (&get()) T(std::move(other.get())); 380 return this->constructed() ? get() : std::move(defaultValue); in valueOr()
|
/device/google/cuttlefish/common/frontend/socket_vsock_proxy/ |
D | main.cpp | 167 auto thread = std::thread(HandleConnection, std::move(vsock_socket), in TcpServer() 168 std::move(client_socket)); in TcpServer() 214 auto thread = std::thread(HandleConnection, std::move(vsock_client), in VsockServer() 215 std::move(client)); in VsockServer()
|
/device/google/cuttlefish/host/frontend/webrtc/lib/ |
D | streamer.cpp | 170 network_thread_(std::move(network_thread)), in StreamerImpl() 171 worker_thread_(std::move(worker_thread)), in StreamerImpl() 172 signal_thread_(std::move(signal_thread)), in StreamerImpl() 415 config, std::move(dependencies)); in CreateClientHandler() 422 if (!client_handler->SetPeerConnection(std::move(peer_connection))) { in CreateClientHandler() 502 cfg, pc_factory, std::move(network_thread), std::move(worker_thread), in Create() 503 std::move(signal_thread), connection_observer_factory)); in Create()
|
/device/generic/goldfish/network/wifi_forwarder/ |
D | wifi_forwarder.cpp | 34 forwardFrame(std::move(frame), RadioType::Local); in WifiForwarder() 39 forwardFrame(std::move(frame), RadioType::Remote); in __anone7eb97f60402() 230 seq = mLocalConnection.transferFrame(std::move(frame), in forwardFrame() 256 mRemoteConnection.sendFrame(std::move(frame)); in forwardFrame()
|
D | local_connection.cpp | 135 mPendingFrames[id] = std::move(frame); in transferFrame() 150 return transferFrame(std::move(copy), dest); in cloneFrame() 217 std::unique_ptr<Frame> frame = std::move(frameIt->second); in onTimeout() 220 transferFrame(std::move(frame), dest); in onTimeout() 284 mOnFrameCallback(std::move(frame)); in onFrame()
|
/device/generic/goldfish-opengl/shared/GoldfishAddressSpace/include/ |
D | goldfish_address_space_fuchsia.impl | 59 m_device = std::make_unique<AddressSpaceDevice::SyncClient>(std::move(channel)); 70 std::move(child_driver_server)); 76 …m_child_driver = std::make_unique<AddressSpaceChildDriver::SyncClient>(std::move(child_driver_clie… 305 deviceSync = new AddressSpaceDevice::SyncClient(std::move(channel)); 333 std::move(child_driver_server)); 336 childSync = new AddressSpaceChildDriver::SyncClient(std::move(child_driver_client)); 361 vmo = std::move(result.Unwrap()->vmo); 406 vmo = std::move(result.Unwrap()->vmo); 474 res = std::move(result.Unwrap()->ping);
|
/device/google/cuttlefish/common/libs/net/ |
D | network_interface_manager.cpp | 67 mgr.reset(new NetworkInterfaceManager(std::move(client))); in New() 75 : nl_client_(std::move(nl_client)) {} in NetworkInterfaceManager()
|
/device/google/cuttlefish/common/libs/utils/ |
D | archive.cpp | 40 auto bsdtar_ret = RunWithManagedStdio(std::move(bsdtar_cmd), &bsdtar_input, in Contents() 83 auto ret = RunWithManagedStdio(std::move(bsdtar_cmd), nullptr, &stdout, in ExtractToMemory()
|
/device/google/cuttlefish/guest/hals/health/ |
D | health.cpp | 48 : Health(std::move(config)) {} in HealthImpl() 112 return new HealthImpl(std::move(config)); in HIDL_FETCH_IHealth()
|