Home
last modified time | relevance | path

Searched refs:device (Results 926 - 950 of 29996) sorted by relevance

1...<<31323334353637383940>>...1200

/third_party/libinput/tools/
H A Dlibinput-list-kernel-devices.py43 for device in context.list_devices(subsystem="input"):
44 if (device.device_node or "").startswith("/dev/input/event"):
45 parent = device.parent
49 devices[device.device_node] = name[1:-1]
72 for device in context.list_devices(subsystem="hid"):
73 name = device.properties.get("HID_NAME")
74 driver = device.properties.get("DRIVER")
75 devpath = device.properties.get("DEVPATH")
76 id = device.properties.get("HID_ID") or "0:0:0"
80 for device i
[all...]
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkRefUtil.hpp35 VkDevice device,
40 VkDevice device,
46 VkDevice device,
51 VkDevice device,
58 Move<VkCommandBuffer> allocateCommandBuffer (const DeviceInterface& vk, VkDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo);
59 void allocateCommandBuffers (const DeviceInterface& vk, VkDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo, Move<VkCommandBuffer> *pCommandBuffers);
60 Move<VkDescriptorSet> allocateDescriptorSet (const DeviceInterface& vk, VkDevice device, const VkDescriptorSetAllocateInfo* pAllocateInfo);
63 VkDevice device,
68 VkDevice device,
75 VkDevice device,
[all...]
/kernel/linux/linux-6.6/drivers/base/
H A Dcore.c3 * drivers/base/core.c - core driver model code (device registration, etc)
13 #include <linux/device.h>
44 static void __fw_devlink_link_to_consumers(struct device *dev);
57 * The driver core will use the fwnode link to create a device link between the
58 * two device objects corresponding to @con and @sup when they are created. The
215 * If the @fwnode has a corresponding struct device and the device supports
217 * MANAGED device links to this device, so leave @fwnode and its descendant's
276 static bool device_is_ancestor(struct device *de
[all...]
/kernel/linux/linux-5.10/drivers/base/power/
H A Dsysfs.c2 /* sysfs entries for device PM */
3 #include <linux/device.h>
15 * control - Report/change current runtime PM setting of the device
17 * Runtime power management of a device can be blocked with the help of
21 * + "auto\n" to allow the device to be power managed at run time;
22 * + "on\n" to prevent the device from being power managed at run time;
27 * the device at run time. Doing that while the device is suspended causes
30 * wakeup - Report/change current wakeup option for device
46 * wake up the device (i
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/
H A Dnouveau_hwmon.c41 nouveau_hwmon_show_temp1_auto_point1_pwm(struct device *d, in nouveau_hwmon_show_temp1_auto_point1_pwm()
50 nouveau_hwmon_temp1_auto_point1_temp(struct device *d, in nouveau_hwmon_temp1_auto_point1_temp()
55 struct nvkm_therm *therm = nvxx_therm(&drm->client.device); in nouveau_hwmon_temp1_auto_point1_temp()
61 nouveau_hwmon_set_temp1_auto_point1_temp(struct device *d, in nouveau_hwmon_set_temp1_auto_point1_temp()
67 struct nvkm_therm *therm = nvxx_therm(&drm->client.device); in nouveau_hwmon_set_temp1_auto_point1_temp()
83 nouveau_hwmon_temp1_auto_point1_temp_hyst(struct device *d, in nouveau_hwmon_temp1_auto_point1_temp_hyst()
88 struct nvkm_therm *therm = nvxx_therm(&drm->client.device); in nouveau_hwmon_temp1_auto_point1_temp_hyst()
94 nouveau_hwmon_set_temp1_auto_point1_temp_hyst(struct device *d, in nouveau_hwmon_set_temp1_auto_point1_temp_hyst()
100 struct nvkm_therm *therm = nvxx_therm(&drm->client.device); in nouveau_hwmon_set_temp1_auto_point1_temp_hyst()
116 nouveau_hwmon_get_pwm1_max(struct device *
[all...]
/kernel/linux/linux-6.6/drivers/base/power/
H A Dsysfs.c2 /* sysfs entries for device PM */
3 #include <linux/device.h>
15 * control - Report/change current runtime PM setting of the device
17 * Runtime power management of a device can be blocked with the help of
21 * + "auto\n" to allow the device to be power managed at run time;
22 * + "on\n" to prevent the device from being power managed at run time;
27 * the device at run time. Doing that while the device is suspended causes
30 * wakeup - Report/change current wakeup option for device
46 * wake up the device (i
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/
H A Dnouveau_hwmon.c41 nouveau_hwmon_show_temp1_auto_point1_pwm(struct device *d, in nouveau_hwmon_show_temp1_auto_point1_pwm()
50 nouveau_hwmon_temp1_auto_point1_temp(struct device *d, in nouveau_hwmon_temp1_auto_point1_temp()
55 struct nvkm_therm *therm = nvxx_therm(&drm->client.device); in nouveau_hwmon_temp1_auto_point1_temp()
61 nouveau_hwmon_set_temp1_auto_point1_temp(struct device *d, in nouveau_hwmon_set_temp1_auto_point1_temp()
67 struct nvkm_therm *therm = nvxx_therm(&drm->client.device); in nouveau_hwmon_set_temp1_auto_point1_temp()
83 nouveau_hwmon_temp1_auto_point1_temp_hyst(struct device *d, in nouveau_hwmon_temp1_auto_point1_temp_hyst()
88 struct nvkm_therm *therm = nvxx_therm(&drm->client.device); in nouveau_hwmon_temp1_auto_point1_temp_hyst()
94 nouveau_hwmon_set_temp1_auto_point1_temp_hyst(struct device *d, in nouveau_hwmon_set_temp1_auto_point1_temp_hyst()
100 struct nvkm_therm *therm = nvxx_therm(&drm->client.device); in nouveau_hwmon_set_temp1_auto_point1_temp_hyst()
116 nouveau_hwmon_get_pwm1_max(struct device *
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DShaderTests.cpp28 return utils::CreateBufferFromData(device, data.data(), bufferSize, in CreateBuffer()
36 csDesc.compute.module = utils::CreateShaderModule(device, shader.c_str()); in CreateComputePipeline()
42 return device.CreateComputePipeline(&csDesc); in CreateComputePipeline()
86 utils::MakeBindGroup(device, pipeline.GetBindGroupLayout(0), {{0, buffer}}); in TEST_P()
90 wgpu::CommandEncoder encoder = device.CreateCommandEncoder(); in TEST_P()
111 ASSERT_DEVICE_ERROR(utils::CreateShaderModule(device, shader.c_str())); in TEST_P()
126 wgpu::ShaderModule vsModule = utils::CreateShaderModule(device, vertexShader.c_str()); in TEST_P()
133 wgpu::ShaderModule fsModule = utils::CreateShaderModule(device, fragmentShader.c_str()); in TEST_P()
138 wgpu::RenderPipeline pipeline = device.CreateRenderPipeline(&rpDesc); in TEST_P()
162 wgpu::ShaderModule vsModule = utils::CreateShaderModule(device, vertexShade in TEST_P()
[all...]
/kernel/linux/linux-6.6/include/linux/
H A Dpm_wakeirq.h9 extern int dev_pm_set_wake_irq(struct device *dev, int irq);
10 extern int dev_pm_set_dedicated_wake_irq(struct device *dev, int irq);
11 extern int dev_pm_set_dedicated_wake_irq_reverse(struct device *dev, int irq);
12 extern void dev_pm_clear_wake_irq(struct device *dev);
16 static inline int dev_pm_set_wake_irq(struct device *dev, int irq) in dev_pm_set_wake_irq()
21 static inline int dev_pm_set_dedicated_wake_irq(struct device *dev, int irq) in dev_pm_set_dedicated_wake_irq()
26 static inline int dev_pm_set_dedicated_wake_irq_reverse(struct device *dev, int irq) in dev_pm_set_dedicated_wake_irq_reverse()
31 static inline void dev_pm_clear_wake_irq(struct device *dev) in dev_pm_clear_wake_irq()
H A Dhost1x.h9 #include <linux/device.h>
79 * @host: pointer to struct device representing the host1x controller
80 * @dev: pointer to struct device backing this host1x client
94 struct device *host;
95 struct device *dev;
128 struct device *dev;
144 struct host1x_bo_mapping *(*pin)(struct device *dev, struct host1x_bo *bo,
175 struct host1x_bo_mapping *host1x_bo_pin(struct device *dev, struct host1x_bo *bo,
314 int (*is_addr_reg)(struct device *dev, u32 class, u32 reg);
336 /* Context device t
[all...]
H A Dof_reserved_mem.h5 #include <linux/device.h>
23 struct device *dev);
25 struct device *dev);
35 int of_reserved_mem_device_init_by_idx(struct device *dev,
37 int of_reserved_mem_device_init_by_name(struct device *dev,
40 void of_reserved_mem_device_release(struct device *dev);
48 static inline int of_reserved_mem_device_init_by_idx(struct device *dev, in of_reserved_mem_device_init_by_idx()
54 static inline int of_reserved_mem_device_init_by_name(struct device *dev, in of_reserved_mem_device_init_by_name()
61 static inline void of_reserved_mem_device_release(struct device *pdev) { } in of_reserved_mem_device_release()
70 * of_reserved_mem_device_init() - assign reserved memory region to given device
[all...]
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_p2p/test/
H A Dwifi_p2p_service_manager_test.cpp87 WifiP2pDevice device; in HWTEST_F() local
90 device.SetDeviceAddress("AA:BB:CC:DD:EE:FF"); in HWTEST_F()
91 p2pSvrReq.SetDevice(device); in HWTEST_F()
111 WifiP2pDevice device; in HWTEST_F() local
112 device.SetDeviceAddress("AA:BB:CC:DD:EE:FF"); in HWTEST_F()
115 EXPECT_TRUE(pWifiP2pServiceManager->AddDeviceService(rsp, device)); in HWTEST_F()
125 WifiP2pDevice device; in HWTEST_F() local
126 device.SetDeviceAddress("AA:BB:CC:DD:EE:FF"); in HWTEST_F()
129 EXPECT_TRUE(pWifiP2pServiceManager->AddDeviceService(rsp, device)); in HWTEST_F()
143 WifiP2pDevice device; in HWTEST_F() local
159 WifiP2pDevice device; HWTEST_F() local
232 WifiP2pDevice device; HWTEST_F() local
241 WifiP2pDevice device; HWTEST_F() local
252 WifiP2pDevice device; HWTEST_F() local
[all...]
/kernel/linux/linux-5.10/drivers/infiniband/core/
H A Dcore_priv.h81 int ib_device_register_sysfs(struct ib_device *device);
82 void ib_device_unregister_sysfs(struct ib_device *device);
86 typedef void (*roce_netdev_callback)(struct ib_device *device, u8 port,
89 typedef bool (*roce_netdev_filter)(struct ib_device *device, u8 port,
105 typedef int (*nldev_callback)(struct ib_device *device,
115 struct device *cdev;
150 int ib_cache_setup_one(struct ib_device *device);
151 void ib_cache_cleanup_one(struct ib_device *device);
152 void ib_cache_release_one(struct ib_device *device);
156 void ib_device_register_rdmacg(struct ib_device *device);
167 ib_device_register_rdmacg(struct ib_device *device) ib_device_register_rdmacg() argument
171 ib_device_unregister_rdmacg(struct ib_device *device) ib_device_unregister_rdmacg() argument
175 ib_rdmacg_try_charge(struct ib_rdmacg_object *cg_obj, struct ib_device *device, enum rdmacg_resource_type resource_index) ib_rdmacg_try_charge() argument
182 ib_rdmacg_uncharge(struct ib_rdmacg_object *cg_obj, struct ib_device *device, enum rdmacg_resource_type resource_index) ib_rdmacg_uncharge() argument
245 ib_security_release_port_pkey_list(struct ib_device *device) ib_security_release_port_pkey_list() argument
249 ib_security_cache_change(struct ib_device *device, u8 port_num, u64 subnet_prefix) ib_security_cache_change() argument
[all...]
/kernel/linux/linux-5.10/drivers/xen/
H A Dxen-acpi-memhotplug.c32 struct acpi_device *device; member
68 pxm = xen_acpi_get_pxm(mem_device->device->handle); in xen_acpi_memory_enable_device()
139 status = acpi_walk_resources(mem_device->device->handle, in acpi_memory_get_device_resources()
155 struct acpi_device *device = NULL; in acpi_memory_get_device() local
160 acpi_bus_get_device(handle, &device); in acpi_memory_get_device()
161 if (acpi_device_enumerated(device)) in acpi_memory_get_device()
165 * Now add the notified device. This creates the acpi_device in acpi_memory_get_device()
174 device = NULL; in acpi_memory_get_device()
175 acpi_bus_get_device(handle, &device); in acpi_memory_get_device()
176 if (!acpi_device_enumerated(device)) { in acpi_memory_get_device()
225 struct acpi_device *device; acpi_memory_device_notify() local
282 xen_acpi_memory_device_add(struct acpi_device *device) xen_acpi_memory_device_add() argument
324 xen_acpi_memory_device_remove(struct acpi_device *device) xen_acpi_memory_device_remove() argument
[all...]
/third_party/mesa3d/src/freedreno/vulkan/
H A Dtu_android.c102 tu_gralloc_info_other(struct tu_device *device, in tu_gralloc_info_other() argument
127 return vk_errorf(device, VK_ERROR_INVALID_EXTERNAL_HANDLE, in tu_gralloc_info_other()
135 return vk_errorf(device, VK_ERROR_INVALID_EXTERNAL_HANDLE, in tu_gralloc_info_other()
149 return vk_errorf(device, VK_ERROR_INVALID_EXTERNAL_HANDLE, in tu_gralloc_info_other()
175 tu_gralloc_info_cros(struct tu_device *device, in tu_gralloc_info_cros() argument
181 const gralloc_module_t *gralloc = device->gralloc; in tu_gralloc_info_cros()
197 tu_gralloc_info(struct tu_device *device, in tu_gralloc_info() argument
203 if (!device->gralloc) { in tu_gralloc_info()
206 (const hw_module_t **)&device->gralloc); in tu_gralloc_info()
213 return vk_startup_errorf(device in tu_gralloc_info()
353 setup_gralloc0_usage(struct tu_device *device, VkFormat format, VkImageUsageFlags imageUsage, int *grallocUsage) setup_gralloc0_usage() argument
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/service/src/classic/
H A Dclassic_battery_observer.cpp35 void ClassicBatteryObserverHf::OnBatteryLevelChanged(const RawAddress &device, int batteryLevel) in OnBatteryLevelChanged() argument
37 HILOGI("address: %{public}s, batteryLevel: %{public}d", GET_ENCRYPT_ADDR(device), batteryLevel); in OnBatteryLevelChanged()
38 dispatcher_->PostTask(std::bind(&ClassicBatteryObserverHf::SetBatteryLevel, this, device, batteryLevel)); in OnBatteryLevelChanged()
41 void ClassicBatteryObserverHf::SetBatteryLevel(const RawAddress &device, int batteryLevel) const in SetBatteryLevel() argument
46 classicAdapter->SetDeviceBatteryLevel(device, batteryLevel); in SetBatteryLevel()
60 void ClassicBatteryObserverAg::OnHfBatteryLevelChanged(const RawAddress &device, int indValue) in OnHfBatteryLevelChanged() argument
62 HILOGI("address: %{public}s, batteryLevel: %{public}d", GET_ENCRYPT_ADDR(device), indValue); in OnHfBatteryLevelChanged()
63 dispatcher_->PostTask(std::bind(&ClassicBatteryObserverAg::SetBatteryLevel, this, device, indValue)); in OnHfBatteryLevelChanged()
66 void ClassicBatteryObserverAg::SetBatteryLevel(const RawAddress &device, int batteryLevel) const in SetBatteryLevel() argument
71 classicAdapter->SetDeviceBatteryLevel(device, batteryLeve in SetBatteryLevel()
[all...]
/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/routers/
H A Dapp_select_router.cpp27 unique_ptr<AudioDeviceDescriptor> device = in GetMediaRenderDevice() local
29 return device; in GetMediaRenderDevice()
34 unique_ptr<AudioDeviceDescriptor> device = in GetCallRenderDevice() local
36 return device; in GetCallRenderDevice()
41 unique_ptr<AudioDeviceDescriptor> device = in GetCallCaptureDevice() local
43 return device; in GetCallCaptureDevice()
55 unique_ptr<AudioDeviceDescriptor> device = in GetRecordCaptureDevice() local
57 return device; in GetRecordCaptureDevice()
62 unique_ptr<AudioDeviceDescriptor> device = in GetToneRenderDevice() local
64 return device; in GetToneRenderDevice()
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dof_reserved_mem.h5 #include <linux/device.h>
23 struct device *dev);
25 struct device *dev);
35 int of_reserved_mem_device_init_by_idx(struct device *dev,
37 int of_reserved_mem_device_init_by_name(struct device *dev,
40 void of_reserved_mem_device_release(struct device *dev);
47 static inline int of_reserved_mem_device_init_by_idx(struct device *dev, in of_reserved_mem_device_init_by_idx()
53 static inline int of_reserved_mem_device_init_by_name(struct device *dev, in of_reserved_mem_device_init_by_name()
60 static inline void of_reserved_mem_device_release(struct device *pdev) { } in of_reserved_mem_device_release()
72 * of_reserved_mem_device_init() - assign reserved memory region to given device
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
H A Dnv41.c32 struct nvkm_device *device = fb->subdev.device; in nv41_fb_tile_prog() local
33 nvkm_wr32(device, 0x100604 + (i * 0x10), tile->limit); in nv41_fb_tile_prog()
34 nvkm_wr32(device, 0x100608 + (i * 0x10), tile->pitch); in nv41_fb_tile_prog()
35 nvkm_wr32(device, 0x100600 + (i * 0x10), tile->addr); in nv41_fb_tile_prog()
36 nvkm_rd32(device, 0x100600 + (i * 0x10)); in nv41_fb_tile_prog()
37 nvkm_wr32(device, 0x100700 + (i * 0x04), tile->zcomp); in nv41_fb_tile_prog()
43 nvkm_wr32(fb->subdev.device, 0x100800, 0x00000001); in nv41_fb_init()
59 nv41_fb_new(struct nvkm_device *device, int index, struct nvkm_fb **pfb) in nv41_fb_new() argument
61 return nvkm_fb_new_(&nv41_fb, device, inde in nv41_fb_new()
[all...]
/kernel/linux/linux-6.6/drivers/memory/
H A Dof_memory.h14 struct device *dev);
16 struct device *dev,
19 struct device *dev);
22 struct device *dev, u32 device_type, u32 *nr_frequencies);
25 struct device *dev);
28 *of_get_min_tck(struct device_node *np, struct device *dev) in of_get_min_tck()
34 *of_get_ddr_timings(struct device_node *np_ddr, struct device *dev, in of_get_ddr_timings()
41 *of_lpddr3_get_min_tck(struct device_node *np, struct device *dev) in of_lpddr3_get_min_tck()
48 struct device *dev, u32 device_type, u32 *nr_frequencies) in of_lpddr3_get_ddr_timings()
54 *of_lpddr2_get_info(struct device_node *np, struct device *de
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
H A Dnv41.c32 struct nvkm_device *device = fb->subdev.device; in nv41_fb_tile_prog() local
33 nvkm_wr32(device, 0x100604 + (i * 0x10), tile->limit); in nv41_fb_tile_prog()
34 nvkm_wr32(device, 0x100608 + (i * 0x10), tile->pitch); in nv41_fb_tile_prog()
35 nvkm_wr32(device, 0x100600 + (i * 0x10), tile->addr); in nv41_fb_tile_prog()
36 nvkm_rd32(device, 0x100600 + (i * 0x10)); in nv41_fb_tile_prog()
37 nvkm_wr32(device, 0x100700 + (i * 0x04), tile->zcomp); in nv41_fb_tile_prog()
43 nvkm_wr32(fb->subdev.device, 0x100800, 0x00000001); in nv41_fb_init()
59 nv41_fb_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, struct nvkm_fb **pfb) in nv41_fb_new() argument
61 return nvkm_fb_new_(&nv41_fb, device, typ in nv41_fb_new()
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DObjectBase.cpp25 ObjectBase::ObjectBase(DeviceBase* device) : RefCounted(kNotErrorPayload), mDevice(device) { in ObjectBase() argument
28 ObjectBase::ObjectBase(DeviceBase* device, ErrorTag) in ObjectBase() argument
29 : RefCounted(kErrorPayload), mDevice(device) { in ObjectBase()
40 ApiObjectBase::ApiObjectBase(DeviceBase* device, const char* label) : ObjectBase(device) { in ApiObjectBase() argument
46 ApiObjectBase::ApiObjectBase(DeviceBase* device, ErrorTag tag) : ObjectBase(device, tag) { in ApiObjectBase() argument
49 ApiObjectBase::ApiObjectBase(DeviceBase* device, LabelNotImplementedTag tag) in ApiObjectBase() argument
50 : ObjectBase(device) { in ApiObjectBase()
[all...]
/kernel/linux/linux-5.10/drivers/visorbus/
H A Dvisorbus_main.c29 * The modalias file will contain the guid of the device.
31 static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, in modalias_show()
66 int visor_check_channel(struct channel_header *ch, struct device *dev, in visor_check_channel()
112 static int visorbus_uevent(struct device *xdev, struct kobj_uevent_env *env) in visorbus_uevent()
126 * @xdev: struct device for the device being matched
127 * @xdrv: struct device_driver for driver to match device against
129 * Return: 1 iff the provided driver can control the specified device
131 static int visorbus_match(struct device *xdev, struct device_driver *xdrv) in visorbus_match()
174 static int match_visorbus_dev_by_id(struct device *de
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/
H A Da2dp_service.cpp62 HILOGI("Active device(%{public}s)", GetEncryptAddr(service->GetActiveSinkDevice().GetAddress()).c_str()); in OnConnectStateChanged()
66 LOG_INFO("[ObserverProfile] %{public}s Remove the active device\n", __func__); in OnConnectStateChanged()
72 LOG_INFO("[ObserverProfile] %{public}s Add the active device\n", __func__); in OnConnectStateChanged()
199 LOG_INFO("[ObserverProfile] %{public}s role[%u] Not find the device\n", __func__, role_); in OnAudioStateChanged()
218 LOG_ERROR("[ObserverProfile] %{public}s role[%u] Not find the device\n", __func__, role_); in OnCodecStateChanged()
307 int A2dpService::Connect(const RawAddress &device) in Connect() argument
309 HILOGI("[address:%{public}s] role[%{public}u]", GET_ENCRYPT_ADDR(device), role_); in Connect()
314 if (connectManager_.JudgeConnectExit(device, role_)) { in Connect()
315 LOG_INFO("[A2dpService]The device is connected as another role"); in Connect()
318 LOG_INFO("[A2dpService]The count of connected device i in Connect()
334 Disconnect(const RawAddress &device) Disconnect() argument
559 GetPlayingState(const RawAddress &device, int &state) const GetPlayingState() argument
574 SetActiveSinkDevice(const RawAddress &device) SetActiveSinkDevice() argument
640 SetConnectStrategy(const RawAddress &device, int strategy) SetConnectStrategy() argument
705 SendDelay(const RawAddress &device, uint16_t delayValue) SendDelay() argument
752 SetCodecPreference(const RawAddress &device, const A2dpSrcCodecInfo &info) SetCodecPreference() argument
791 SwitchOptionalCodecs(const RawAddress &device, bool isEnable) SwitchOptionalCodecs() argument
845 StartPlaying(const RawAddress &device) StartPlaying() argument
869 SuspendPlaying(const RawAddress &device) SuspendPlaying() argument
893 StopPlaying(const RawAddress &device) StopPlaying() argument
950 GetRenderPosition(const RawAddress &device, uint32_t &delayValue, uint64_t &sendDataSize, uint32_t &timeStamp) GetRenderPosition() argument
972 ProcessConnectFrameworkCallback(int state, const RawAddress &device) ProcessConnectFrameworkCallback() argument
980 ProcessPlayingFrameworkCallback(int playingState, int error, const RawAddress &device) ProcessPlayingFrameworkCallback() argument
989 ProcessCodecFrameworkCallback( const bluetooth::A2dpSrcCodecInfo &info, int error, const RawAddress &device) ProcessCodecFrameworkCallback() argument
998 GetDeviceFromList(const RawAddress &device) GetDeviceFromList() argument
1028 DeleteDeviceFromList(const RawAddress &device) DeleteDeviceFromList() argument
1047 PostEvent(utility::Message event, RawAddress &device) PostEvent() argument
1052 ProcessEvent(utility::Message event, RawAddress &device) ProcessEvent() argument
1103 UpdateOptCodecStatus(const RawAddress &device) UpdateOptCodecStatus() argument
1156 UpdateActiveDevice(const RawAddress &device) UpdateActiveDevice() argument
1164 SetOptionalCodecsSupportState(const RawAddress &device, int state) SetOptionalCodecsSupportState() argument
[all...]
/drivers/hdf_core/adapter/platform/pwm/
H A Dpwm_stm32f4xx.c212 static uint32_t GetPwmDeviceResource(PwmDevice *device, const char *deviceMatchAttr) in GetPwmDeviceResource() argument
216 if (device == NULL || deviceMatchAttr == NULL) { in GetPwmDeviceResource()
217 HDF_LOGE("%s: device or deviceMatchAttr is NULL", __func__); in GetPwmDeviceResource()
220 resource = &device->resource; in GetPwmDeviceResource()
231 static int32_t GetPwmDeviceResource(PwmDevice *device, const struct DeviceResourceNode *resourceNode) in GetPwmDeviceResource() argument
236 if (device == NULL || resourceNode == NULL) { in GetPwmDeviceResource()
237 HDF_LOGE("resource or device is NULL\r\n"); in GetPwmDeviceResource()
241 resource = &device->resource; in GetPwmDeviceResource()
277 static int32_t AttachPwmDevice(struct PwmDev *host, const struct HdfDeviceObject *device) argument
282 if (device
322 PwmDriverBind(struct HdfDeviceObject *device) global() argument
341 PwmDriverInit(struct HdfDeviceObject *device) global() argument
375 PwmDriverRelease(struct HdfDeviceObject *device) global() argument
[all...]

Completed in 18 milliseconds

1...<<31323334353637383940>>...1200