/device/google/contexthub/firmware/os/platform/stm32/inc/plat/ |
D | spi.h | 27 uint8_t channel; member 50 #define SPI1_DMA_RX_CFG_A { .channel = 3, .stream = 0 } 51 #define SPI1_DMA_RX_CFG_B { .channel = 3, .stream = 2 } 52 #define SPI1_DMA_TX_CFG_A { .channel = 3, .stream = 3 } 53 #define SPI1_DMA_TX_CFG_B { .channel = 3, .stream = 5 } 56 #define SPI2_DMA_RX_CFG { .channel = 0, .stream = 3 } 57 #define SPI2_DMA_TX_CFG { .channel = 0, .stream = 4 } 60 #define SPI3_DMA_RX_CFG_A { .channel = 0, .stream = 0 } 61 #define SPI3_DMA_RX_CFG_B { .channel = 0, .stream = 2 } 62 #define SPI3_DMA_TX_CFG_A { .channel = 0, .stream = 5 } [all …]
|
D | i2c.h | 27 uint8_t channel; member 55 #define I2C1_DMA_RX_CFG_A { .channel = 1, .stream = 0 } 56 #define I2C1_DMA_RX_CFG_B { .channel = 1, .stream = 5 } 57 #define I2C1_DMA_TX_CFG_A { .channel = 0, .stream = 1 } 58 #define I2C1_DMA_TX_CFG_B { .channel = 1, .stream = 6 } 59 #define I2C1_DMA_TX_CFG_C { .channel = 1, .stream = 7 } 65 #define I2C2_DMA_RX_CFG_A { .channel = 7, .stream = 2 } 66 #define I2C2_DMA_RX_CFG_B { .channel = 7, .stream = 3 } 67 #define I2C2_DMA_TX_CFG { .channel = 7, .stream = 7 } 72 #define I2C3_DMA_RX_CFG_A { .channel = 1, .stream = 1 } [all …]
|
/device/generic/goldfish-opengl/system/OpenglSystemCommon/ |
D | ProcessPipe.cpp | 63 zx::channel channel(GetConnectToServiceFunction()(QEMU_PIPE_PATH)); in processPipeInitOnce() local 64 if (!channel) { in processPipeInitOnce() 71 std::move(channel)); in processPipeInitOnce() 73 zx::channel pipe_server, pipe_client; in processPipeInitOnce() 74 zx_status_t status = zx::channel::create(0, &pipe_server, &pipe_client); in processPipeInitOnce()
|
D | QemuPipeStreamFuchsia.cpp | 75 zx::channel channel(GetConnectToServiceFunction()(QEMU_PIPE_PATH)); in connect() local 76 if (!channel) { in connect() 84 std::move(channel)); in connect() 86 zx::channel pipe_client, pipe_server; in connect() 87 zx_status_t status = zx::channel::create(0, &pipe_server, &pipe_client); in connect()
|
/device/generic/goldfish/network/wifi_forwarder/ |
D | frame.h | 58 uint32_t channel, 71 uint32_t channel() const { return mChannel; } in channel() function 92 uint32_t channel, 104 uint32_t channel() const { return mInfo.channel(); } in channel() function
|
D | remote_connection.cpp | 44 uint32_t flags, uint32_t channel, uint32_t numRates, in WifiForwardHeader() 54 , channel(__cpu_to_le32(channel)) in WifiForwardHeader() 72 uint32_t channel; member 222 __le32_to_cpu(fwd->channel), in receive() 237 __le32_to_cpu(fwd->channel), in receive() 261 frame->channel(), in sendFrame() 322 info.channel(), in ackFrame()
|
D | frame.cpp | 77 uint32_t channel, in FrameInfo() argument 83 , mChannel(channel) { in FrameInfo() 103 uint64_t cookie, uint32_t flags, uint32_t channel, in Frame() argument 106 , mInfo(transmitter, cookie, flags, channel, rates, numRates) in Frame() 155 ss << "[ Ck: " << cookie() << " Ch: " << channel() << " ] "; in str()
|
D | local_connection.cpp | 118 !msg.addAttribute(HWSIM_ATTR_FREQ, frame->channel())) { in transferFrame() 147 frame.channel(), in cloneFrame() 323 uint32_t channel = nla_get_u32(attrs[HWSIM_ATTR_FREQ]); in parseFrame() local 326 flags, channel, rates, numRates); in parseFrame()
|
/device/generic/goldfish-opengl/shared/GoldfishAddressSpace/include/ |
D | goldfish_address_space_fuchsia.impl | 18 #include <lib/zx/channel.h> 53 zx::channel channel(GetConnectToServiceFunction()(GOLDFISH_ADDRESS_SPACE_DEVICE_NAME)); 54 if (!channel) { 59 m_device = std::make_unique<AddressSpaceDevice::SyncClient>(std::move(channel)); 61 zx::channel child_driver_server, child_driver_client; 62 zx_status_t status = zx::channel::create(0, &child_driver_server, &child_driver_client); 298 zx::channel channel(GetConnectToServiceFunction()(GOLDFISH_ADDRESS_SPACE_DEVICE_NAME)); 299 if (!channel) { 305 deviceSync = new AddressSpaceDevice::SyncClient(std::move(channel)); 324 zx::channel child_driver_server, child_driver_client; [all …]
|
/device/google/cuttlefish/host/commands/secure_env/ |
D | gatekeeper_responder.cpp | 22 cuttlefish::GatekeeperChannel* channel, gatekeeper::GateKeeper* gatekeeper) in GatekeeperResponder() argument 23 : channel_(channel), gatekeeper_(gatekeeper) { in GatekeeperResponder()
|
D | keymaster_responder.cpp | 22 cuttlefish::KeymasterChannel* channel, keymaster::AndroidKeymaster* keymaster) in KeymasterResponder() argument 23 : channel_(channel), keymaster_(keymaster) { in KeymasterResponder()
|
D | gatekeeper_responder.h | 27 GatekeeperResponder(cuttlefish::GatekeeperChannel* channel,
|
D | keymaster_responder.h | 27 KeymasterResponder(cuttlefish::KeymasterChannel* channel,
|
/device/linaro/poplar/wifi/wpa_supplicant_8_lib/ |
D | driver_cmd_wext.c | 131 u8 channel; in wpa_driver_wext_set_cscan_params() local 144 channel = (u8)atoi(cmd + 5); in wpa_driver_wext_set_cscan_params() 151 buf[bp++] = channel; in wpa_driver_wext_set_cscan_params() 152 if (channel != 0) { in wpa_driver_wext_set_cscan_params() 158 buf[bp++] = channel; in wpa_driver_wext_set_cscan_params() 167 if (channel != 0) { in wpa_driver_wext_set_cscan_params()
|
/device/google/cuttlefish/host/commands/modem_simulator/unittest/ |
D | service_test.cpp | 193 int channel = std::stoi(response[0]); in openLogicalChannel() local 194 return channel; in openLogicalChannel() 197 bool closeLogicalChannel(int channel) { in closeLogicalChannel() argument 199 command += std::to_string(channel); in closeLogicalChannel() 335 int channel = openLogicalChannel(command); in TEST_F() local 336 ASSERT_EQ(channel, 1); in TEST_F() 338 ASSERT_FALSE(closeLogicalChannel(channel + 3)); in TEST_F() 339 ASSERT_TRUE(closeLogicalChannel(channel)); in TEST_F() 344 int channel = openLogicalChannel(command); in TEST_F() local 345 ASSERT_EQ(channel, 1); in TEST_F() [all …]
|
/device/linaro/hikey/hifi/xaf/host-apf/include/audio/ |
D | xa-mixer-api.h | 66 #define XA_MIXER_VOLUME(track, channel, volume) \ argument 67 (__XA_MIXER_VOLUME(volume) | ((track) << 16) | ((channel) << 20))
|
/device/linaro/hikey/hifi/xaf/hifi-dpf/include/audio/ |
D | xa-mixer-api.h | 69 #define XA_MIXER_VOLUME(track, channel, volume) \ argument 70 (__XA_MIXER_VOLUME(volume) | ((track) << 16) | ((channel) << 20))
|
/device/google/cuttlefish/common/libs/security/ |
D | gatekeeper_channel.cpp | 45 GatekeeperChannel::GatekeeperChannel(SharedFD channel) : channel_(channel) { in GatekeeperChannel() argument
|
D | keymaster_channel.cpp | 43 KeymasterChannel::KeymasterChannel(SharedFD channel) : channel_(channel) { in KeymasterChannel() argument
|
/device/google/bonito/ |
D | WCNSS_qcom_cfg.ini | 151 # 4-Force SCC if same band (or) use SAP mandatory channel for DBS, 497 # Enable support for TDLS off-channel operation 500 # TDLS off-channel operation will be invoked when there is only one 585 # SAP auto channel selection configuration 586 # 0 = disable auto channel selection 587 # 1 = enable auto channel selection, channel provided by supplicant will be ignored 609 # Remove Overlap channel restriction 612 # Enable/Disable channel avoidance for SAP in SCC scenario 638 # 0 - Disallow STA+SAP SCC on LTE coex channel 639 # 1 - Allow STA+SAP SCC on LTE coex channel
|
/device/google/crosshatch/ |
D | WCNSS_qcom_cfg.ini | 151 # 4-Force SCC if same band (or) use SAP mandatory channel for DBS, 497 # Enable support for TDLS off-channel operation 500 # TDLS off-channel operation will be invoked when there is only one 585 # SAP auto channel selection configuration 586 # 0 = disable auto channel selection 587 # 1 = enable auto channel selection, channel provided by supplicant will be ignored 609 # Remove Overlap channel restriction 612 # Enable/Disable channel avoidance for SAP in SCC scenario 638 # 0 - Disallow STA+SAP SCC on LTE coex channel 639 # 1 - Allow STA+SAP SCC on LTE coex channel
|
/device/generic/goldfish-opengl/system/vulkan/ |
D | goldfish_vulkan.cpp | 752 zx_handle_t channel = GetConnectToServiceFunction()("/svc/fuchsia.logger.LogSink"); in InitLogger() local 753 if (channel == ZX_HANDLE_INVALID) in InitLogger() 762 zx::unowned_channel(channel), std::move(remote_socket)); in InitLogger() 763 zx_handle_close(channel); in InitLogger() 795 zx::channel remote_endpoint, local_endpoint; in LocalConnectToServiceFunction() 797 if ((status = zx::channel::create(0, &remote_endpoint, &local_endpoint)) != ZX_OK) { in LocalConnectToServiceFunction()
|
/device/google/cuttlefish/guest/monitoring/cuttlefish_service/java/com/android/google/gce/gceservice/ |
D | GceService.java | 77 NotificationChannel channel = in onCreate() local 82 notificationManager.createNotificationChannel(channel); in onCreate()
|
/device/google/cuttlefish/common/libs/utils/ |
D | subprocess.cpp | 200 bool Command::RedirectStdIO(Subprocess::StdIOChannel channel, in RedirectStdIO() argument 205 if (redirects_.count(channel)) { in RedirectStdIO() 207 << static_cast<int>(channel); in RedirectStdIO() 215 redirects_[channel] = dup_fd; in RedirectStdIO()
|
/device/google/cuttlefish/host/frontend/gcastv2/signaling_server/assets/js/ |
D | cf_webrtc.js | 39 this.channelPromise = this.channelPromise.then(channel => { 40 channel.send(msg); 41 return channel;
|