Home
last modified time | relevance | path

Searched refs:dev (Results 1 – 25 of 278) sorted by relevance

12345678910>>...12

/base/startup/init/ueventd/etc/
Dueventd.config16 /dev/null 0666 0 0
17 /dev/binder 0666 0 0
18 /dev/hwbinder 0666 0 0
19 /dev/vndbinder 0666 0 0
20 /dev/input/event* 0660 0 input
21 /dev/input/mice 0660 0 input
22 /dev/input/mouse0 0660 0 input
23 /dev/snd/timer 0660 1000 1005
24 /dev/zero 0666 0 0
25 /dev/full 0666 0 0
[all …]
/base/update/updater/services/fs_manager/
Dpartitions.cpp28 static int DeviceStat(const BlockDevice &dev, struct stat &devStat) in DeviceStat() argument
31 if (!stat (dev.devPath.c_str(), &devStat)) { in DeviceStat()
34 if (stat (dev.devPath.c_str(), &devStat) != EOK) { in DeviceStat()
41 static int DeviceProbeType(BlockDevice &dev) in DeviceProbeType() argument
46 BlockSpecific *specific = BLOCK_SPECIFIC(&dev); in DeviceProbeType()
47 if (DeviceStat(dev, devStat) == 0) { in DeviceProbeType()
58 dev.type = DEVICE_SCSI; in DeviceProbeType()
61 dev.type = DEVICE_EMMC; in DeviceProbeType()
64 dev.type = DEVICE_UNKNOWN; in DeviceProbeType()
84 static bool ReadDeviceSysfsFile(BlockDevice &dev, const std::string &file, std::string &strl) in ReadDeviceSysfsFile() argument
[all …]
Ddo_partition.cpp68 static void DoFsync(const BlockDevice &dev) in DoFsync() argument
70 BlockSpecific* bs = BLOCK_SPECIFIC(&dev); in DoFsync()
83 if (disk.dev->readOnly) { in BlockSync()
86 DoFsync(*(disk.dev)); in BlockSync()
102 disk.dev->fd = open(disk.dev->devPath.c_str(), RW_MODE); in BlockDiskOpen()
103 if (disk.dev->fd < 0) { in BlockDiskOpen()
104 LOG(WARNING) << "open fail: " << disk.dev->devPath << errno; in BlockDiskOpen()
106 return disk.dev->fd; in BlockDiskOpen()
111 if (disk.dev != nullptr) { in BlockDiskClose()
112 if (disk.dev->fd > 0) { in BlockDiskClose()
[all …]
/base/security/selinux_adapter/sepolicy/base/system/
Dfile_contexts33 /dev(/.*)? u:object_r:dev_file:s0
34 /dev/functionfs(/.*)? u:object_r:dev_functionfs_file:s0
35 /dev/__parameters__(/.*)? u:object_r:dev_parameters_file:s0
36 /dev/block(/.*)? u:object_r:dev_block_file:s0
37 /dev/block/zram0 u:object_r:zram_device:s0
38 /dev/bus(/.*)? u:object_r:dev_bus_file:s0
39 /dev/bus/usb(/.*)? u:object_r:dev_bus_usb_file:s0
40 /dev/char(/.*)? u:object_r:dev_char_file:s0
41 /dev/dma_heap(/.*)? u:object_r:dev_dma_heap_file:s0
42 /dev/dri(/.*)? u:object_r:dev_dri_file:s0
[all …]
/base/msdp/device_status/services/interaction/coordination/src/
Dcoordination_device_manager.cpp39 CoordinationDeviceManager::Device::Device(std::shared_ptr<IDevice> dev) in Device() argument
40 : device_(dev) in Device()
222 std::shared_ptr<Device> dev = devIter->second; in GetCoordinationDhids() local
223 if (!dev->IsPointerDevice()) { in GetCoordinationDhids()
227 inputDeviceDhids.push_back(dev->GetDhid()); in GetCoordinationDhids()
231 const std::string pointerNetworkId { dev->IsRemote() ? dev->GetNetworkId() : localNetworkId }; in GetCoordinationDhids()
233 for (const auto &[id, dev] : devices_) { in GetCoordinationDhids()
234 CHKPC(dev); in GetCoordinationDhids()
235 const std::string networkId { dev->IsRemote() ? dev->GetNetworkId() : localNetworkId }; in GetCoordinationDhids()
239 if (dev->GetKeyboardType() == IDevice::KEYBOARD_TYPE_ALPHABETICKEYBOARD) { in GetCoordinationDhids()
[all …]
/base/usb/usb_manager/test/native/mock/include/
Dusb_impl_mock.h57 int32_t GetRawDescriptor(const UsbDev &dev, std::vector<uint8_t> &decriptor) override;
58 …int32_t GetStringDescriptor(const UsbDev &dev, uint8_t descId, std::vector<uint8_t> &decriptor) ov…
61 MOCK_METHOD1(OpenDevice, int32_t(const UsbDev &dev));
62 MOCK_METHOD1(CloseDevice, int32_t(const UsbDev &dev));
63 MOCK_METHOD2(GetDeviceDescriptor, int32_t(const UsbDev &dev, std::vector<uint8_t> &decriptor));
64 …MOCK_METHOD3(GetConfigDescriptor, int32_t(const UsbDev &dev, uint8_t descId, std::vector<uint8_t> …
65 MOCK_METHOD2(GetFileDescriptor, int32_t(const UsbDev &dev, int32_t &fd));
66 MOCK_METHOD2(SetConfig, int32_t(const UsbDev &dev, uint8_t configIndex));
67 MOCK_METHOD2(GetConfig, int32_t(const UsbDev &dev, uint8_t &configIndex));
68 MOCK_METHOD3(ClaimInterface, int32_t(const UsbDev &dev, uint8_t interfaceid, uint8_t force));
[all …]
/base/usb/usb_manager/services/native/src/
Dusb_host_manager.cpp69 bool UsbHostManager::AddDevice(UsbDevice *dev) in AddDevice() argument
71 if (dev == nullptr) { in AddDevice()
76 auto isSuccess = PublishCommonEvent(CommonEventSupport::COMMON_EVENT_USB_DEVICE_ATTACHED, *dev); in AddDevice()
81 uint8_t busNum = dev->GetBusNum(); in AddDevice()
82 uint8_t devNum = dev->GetDevAddr(); in AddDevice()
94 devices_.insert(std::pair<std::string, UsbDevice *>(name, dev)); in AddDevice()
98 bool UsbHostManager::PublishCommonEvent(const std::string &event, const UsbDevice &dev) in PublishCommonEvent() argument
106 auto jsonString = Json::writeString(builder, dev.ToJson()); in PublishCommonEvent()
111 ReportHostPlugSysEvent(event, dev); in PublishCommonEvent()
131 void UsbHostManager::ReportHostPlugSysEvent(const std::string &event, const UsbDevice &dev) in ReportHostPlugSysEvent() argument
[all …]
Dusb_service.cpp276 const UsbDev dev = {busNum, devAddr}; in OpenDevice() local
281 int32_t ret = usbd_->OpenDevice(dev); in OpenDevice()
519 const UsbDev dev = {busNum, devAddr}; in ClaimInterface() local
524 return usbd_->ClaimInterface(dev, interface, force); in ClaimInterface()
529 const UsbDev dev = {busNum, devAddr}; in ReleaseInterface() local
534 return usbd_->ReleaseInterface(dev, interface); in ReleaseInterface()
552 const UsbDev &dev, const UsbPipe &pipe, const std::vector<uint8_t> &bufferData, int32_t timeOut) in BulkTransferWrite() argument
558 int32_t ret = usbd_->BulkTransferWrite(dev, pipe, timeOut, bufferData); in BulkTransferWrite()
565 int32_t UsbService::ControlTransfer(const UsbDev &dev, const UsbCtrlTransfer &ctrl, std::vector<uin… in ControlTransfer() argument
574 ret = usbd_->ControlTransferWrite(dev, ctrl, bufferData); in ControlTransfer()
[all …]
/base/security/selinux_adapter/sepolicy/ohos_policy/drivers/adapter/vendor/
Dsample_host.te15 #avc: denied { read } for pid=1992 comm="hdf_devhost" name="u:object_r:security_param:s0" dev="t…
16 … { map } for pid=1992 comm="hdf_devhost" path="/dev/__parameters__/u:object_r:security_param:s0"…
17 #avc: denied { read } for pid=1992 comm="hdf_devhost" name="u:object_r:hilog_param:s0" dev="tmpf…
18 …d { open } for pid=1992 comm="hdf_devhost" path="/dev/__parameters__/u:object_r:hilog_param:s0"
19 …ed { map } for pid=1992 comm="hdf_devhost" path="/dev/__parameters__/u:object_r:hilog_param:s0"
20 #avc: denied { read } for pid=1992 comm="hdf_devhost" name="u:object_r:persist_param:s0" dev="tm…
21 … { open } for pid=1992 comm="hdf_devhost" path="/dev/__parameters__/u:object_r:persist_param:s0"…
22 …d { map } for pid=1992 comm="hdf_devhost" path="/dev/__parameters__/u:object_r:persist_param:s0"…
23 #avc: denied { read } for pid=1992 comm="hdf_devhost" name="u:object_r:persist_sys_param:s0" dev
24 #avc: denied { use } for pid=1997 comm="HdiServiceManag" path="/dev/ashmem" dev="tmpfs" ino=185 …
[all …]
/base/msdp/device_status/services/device_manager/src/
Ddevice_manager.cpp190 std::shared_ptr<IDevice> dev = FindDevice(devPath); in AddDevice() local
191 if (dev != nullptr) { in AddDevice()
193 return dev; in AddDevice()
203 dev = std::make_shared<Device>(deviceId); in AddDevice()
204 dev->SetDevPath(devPath); in AddDevice()
205 dev->SetSysPath(std::string(rpath)); in AddDevice()
206 if (dev->Open() != RET_OK) { in AddDevice()
210 auto ret = devices_.insert_or_assign(dev->GetId(), dev); in AddDevice()
212 FI_HILOGD("\'%{public}s\' added", dev->GetName().c_str()); in AddDevice()
213 OnDeviceAdded(dev); in AddDevice()
[all …]
/base/security/selinux_adapter/sepolicy/ohos_policy/distributedhardware/device_manager/system/
Ddevice_manager.te18 #avc: denied { search } for pid=594 comm="sa_main" name="bin" dev="mmcblk0p6" ino=107 scontext=u…
21 #avc: denied { read } for pid=594 comm="sa_main" name="u:object_r:ohos_param:s0" dev="tmpfs" ino…
22 …denied { open } for pid=525 comm="sa_main" path="/dev/__parameters__/u:object_r:ohos_param:s0" d…
23 … denied { map } for pid=469 comm="sa_main" path="/dev/__parameters__/u:object_r:ohos_param:s0" d…
26 #avc: denied { search } for pid=594 comm="sa_main" name="socket" dev="tmpfs" ino=21 scontext=u:r…
27 #avc: denied { search } for pid=594 comm="device_manager" name="socket" dev="tmpfs" ino=21 scont…
30 #avc: denied { read } for pid=479 comm="device_manager" name="u:object_r:hilog_param:s0" dev="tm…
31 … { open } for pid=496 comm="device_manager" path="/dev/__parameters__/u:object_r:hilog_param:s0"
32 … { map } for pid=525 comm="device_manager" path="/dev/__parameters__/u:object_r:hilog_param:s0"
38 #avc: denied { read } for pid=675 comm="sa_main" name="u:object_r:persist_param:s0" dev="tmpfs" …
[all …]
/base/security/selinux_adapter/sepolicy/ohos_policy/update/updater/system/
Dupdater.te16 #avc: denied { read } for pid=240 comm="updater" name="u:object_r:hilog_param:s0" dev="tmpfs" ino=3…
17 …: denied { open } for pid=240 comm="updater" path="/dev/__parameters__/u:object_r:hilog_param:s0"
18 …c: denied { map } for pid=240 comm="updater" path="/dev/__parameters__/u:object_r:hilog_param:s0"
21 #avc: denied { getattr } for pid=240 comm="updater" path="/dev/hdf_input_host" dev="tmpfs" ino=214 …
22 #avc: denied { read write } for pid=240 comm="updater" name="hdf_input_host" dev="tmpfs" ino=214 sc…
23 #avc: denied { open } for pid=240 comm="updater" path="/dev/hdf_input_host" dev="tmpfs" ino=214 sco…
24 #avc: denied { ioctl } for pid=240 comm="updater" path="/dev/hdf_input_host" dev="tmpfs" ino=214 io…
28 #avc: denied { getattr } for pid=233 comm="updater" path="/dev/hdf_input_event1" dev="tmpfs" ino=22…
29 #avc: denied { read write } for pid=233 comm="updater" name="hdf_input_event1" dev="tmpfs" ino=222 …
30 #avc: denied { open } for pid=233 comm="updater" path="/dev/hdf_input_event1" dev="tmpfs" ino=222 s…
[all …]
Dinit.te15 #avc: denied { read } for pid=1 comm="init" name="ohos.para.size" dev="rootfs" ino=17448 scontext=u…
16 … for pid=1 comm="init" path="/etc/selinux/targeted/contexts/file_contexts" dev="rootfs" ino=17429 …
17 #avc: denied { open } for pid=1 comm="init" path="/etc/selinux/targeted/contexts/file_contexts" dev
18 #avc: denied { open } for pid=1 comm="init" path="/etc/param/ohos.para.size" dev="rootfs" ino=17448…
19 #avc: denied { execute } for pid=231 comm="init" name="ueventd" dev="rootfs" ino=17717 scontext=u:r…
20 #avc: denied { execute_no_trans } for pid=233 comm="init" path="/bin/hilog" dev="rootfs" ino=797 sc…
21 #avc: denied { map } for pid=1 comm="init" path="/lib/init/librebootmodule.z.so" dev="rootfs" ino=1…
22 #avc: denied { map } for pid=235 comm="hilog" path="/bin/hilog" dev="rootfs" ino=17650 scontext=u:r…
23 …pid=227 comm="hilogd.control" path="/data/log/hilog/.persisterInfo_1.info" dev="rootfs" ino=26950 …
26 # avc: denied { read } for pid=1 comm="init" name="etc" dev="rootfs" ino=399 scontext=u:r:init:s0 t…
[all …]
Dupdater_binary.te16 #avc: denied { search } for pid=281 comm="updater" name="/" dev="rootfs" ino=1 scontext=u:object_r:…
17 # avc: denied { read write } for pid=273 comm="updater_binary" name="updater" dev="rootfs" ino=2…
20 # avc: denied { open } for pid=264 comm="updater_binary" path="/data/updater/update_tmp" dev="rootf…
21 # avc: denied { remove_name } for pid=264 comm="updater_binary" name="system" dev="rootfs" ino=2040…
24 #avc: denied { execute } for pid=279 comm="updater" name="ld-musl-arm.so.1" dev="rootfs" ino=596 sc…
25 #avc: denied { read open } for pid=279 comm="updater" path="/lib/ld-musl-arm.so.1" dev="rootfs" ino…
26 #avc: denied { map } for pid=279 comm="updater_binary" path="/lib/ld-musl-arm.so.1" dev="rootfs" in…
27 … } for pid=279 comm="updater_binary" path="/etc/ld-musl-namespace-arm.ini" dev="rootfs" ino=418 sc…
28 # avc: denied { execute_no_trans } for pid=277 comm="updater_binary" path="/bin/processdump" dev
30 # avc: denied { write } for pid=269 comm="updater_binary" path="/data/updater/loadScript.us" dev
[all …]
Dsh.te14 #avc: denied { read write } for pid=230 comm="sh" path="/dev/console" dev="tmpfs" ino=246 scontext=…
19 …#avc: denied { search } for pid=267 comm="hdcd" name="/" dev="devpts" ino=1 scontext=u:r:sh:s0 tco…
22 …#avc: denied { open } for pid=267 comm="hdcd" path="/dev/pts/0" dev="devpts" ino=3 scontext=u:r:sh…
25 …#avc: denied { entrypoint } for pid=230 comm="init" path="/bin/sh" dev="rootfs" ino=16991 scontext…
26 …#avc: denied { map } for pid=230 comm="sh" path="/bin/sh" dev="rootfs" ino=16991 scontext=u:r:sh:s…
27 …#avc: denied { read } for pid=230 comm="sh" path="/bin/sh" dev="rootfs" ino=16991 scontext=u:r:sh:…
28 …#avc: denied { execute } for pid=230 comm="sh" path="/bin/sh" dev="rootfs" ino=16991 scontext=u:r:…
29 …#avc: denied { execute_no_trans } for pid=262 comm="hdcd" path="/bin/sh" dev="rootfs" ino=16991 sc…
32 …#avc: denied { read write } for pid=230 comm="sh" path="socket:[28383]" dev="sockfs" ino=28383 sco…
35 …#avc: denied { open } for pid=230 comm="sh" path="/dev/__parameters__/u:object_r:musl_param:s0" de…
[all …]
Dhilogd.te15 # avc: denied { read write } for pid=221 comm="hilogd" path="/dev/console" dev="rootfs" ino=5960 sc…
16 # avc: denied { ioctl } for pid=227 comm="hilogd.pst_res" path="/dev/console" dev="rootfs" ino=1723…
20 # avc: denied { read write } for pid=221 comm="hilogd" path="socket:[27872]" dev="sockfs" ino=27872…
23 # avc: denied { read } for pid=227 comm="hilogd" name="u:object_r:musl_param:s0" dev="tmpfs" ino=40…
24 …c: denied { open } for pid=227 comm="hilogd" path="/dev/__parameters__/u:object_r:musl_param:s0" d…
25 …vc: denied { map } for pid=227 comm="hilogd" path="/dev/__parameters__/u:object_r:musl_param:s0" d…
28 # avc: denied { read } for pid=227 comm="hilogd" name="etc" dev="rootfs" ino=17240 scontext=u:r:hil…
31 …pid=230 comm="hilogd.control" path="/data/log/hilog/.persisterInfo_2.info" dev="rootfs" ino=27737 …
32 #avc: denied { entrypoint } for pid=221 comm="init" path="/bin/hilogd" dev="rootfs" ino=17505 scont…
33 #avc: denied { map } for pid=221 comm="hilogd" path="/bin/hilogd" dev="rootfs" ino=17505 scontext=u…
[all …]
Dfaultloggerd.te15 #avc: denied { entrypoint } for pid=238 comm="init" path="/bin/faultloggerd" dev="rootfs" ino=17767…
16 #avc: denied { map } for pid=238 comm="faultloggerd" path="/bin/faultloggerd" dev="rootfs" ino=1776…
17 #avc: denied { read } for pid=238 comm="faultloggerd" path="/bin/faultloggerd" dev="rootfs" ino=177…
18 #avc: denied { execute } for pid=233 comm="faultloggerd" path="/bin/faultloggerd" dev="rootfs" ino=…
19 #avc: denied { open } for pid=233 comm="faultloggerd" path="/etc/ld-musl-namespace-arm.ini" dev="ro…
20 #avc: denied { getattr } for pid=233 comm="faultloggerd" path="/etc/ld-musl-namespace-arm.ini" dev=…
23 #avc: denied { read write } for pid=238 comm="faultloggerd" path="/dev/console" dev="rootfs" ino=17…
28 #avc: denied { read write } for pid=238 comm="faultloggerd" path="socket:[18134]" dev="sockfs" ino=…
31 #avc: denied { read } for pid=233 comm="faultloggerd" name="u:object_r:musl_param:s0" dev="tmpfs" i…
32 …ied { open } for pid=233 comm="faultloggerd" path="/dev/__parameters__/u:object_r:musl_param:s0" d…
[all …]
Dueventd.te16 #avc: denied { map } for pid=227 comm="ueventd" path="/bin/ueventd" dev="rootfs" ino=16964 scontext…
17 #avc: denied { read } for pid=227 comm="ueventd" path="/bin/ueventd" dev="rootfs" ino=16964 scontex…
18 #avc: denied { execute } for pid=227 comm="ueventd" path="/bin/ueventd" dev="rootfs" ino=16964 scon…
19 #avc: denied { open } for pid=227 comm="ueventd" path="/etc/ld-musl-namespace-arm.ini" dev="rootfs"…
20 #avc: denied { getattr } for pid=227 comm="ueventd" path="/etc/ld-musl-namespace-arm.ini" dev="root…
21 #avc: denied { entrypoint } for pid=227 comm="init" path="/bin/ueventd" dev="rootfs" ino=16964 scon…
24 #avc: denied { read write } for pid=227 comm="ueventd" path="/dev/console" dev="rootfs" ino=16657 s…
27 #avc: denied { write } for pid=227 comm="ueventd" path="socket:[19887]" dev="sockfs" ino=19887 scon…
32 #avc: denied { read } for pid=229 comm="ueventd" name="u:object_r:musl_param:s0" dev="tmpfs" ino=40…
33 …: denied { open } for pid=229 comm="ueventd" path="/dev/__parameters__/u:object_r:musl_param:s0" d…
[all …]
/base/security/selinux_adapter/sepolicy/ohos_policy/powermgr/battery_manager/system/
Dcharger.te16 #avc: denied { search } for pid=268 comm="charger" name="socket" dev="tmpfs" ino=21 scontext=u:r…
19 #avc: denied { search } for pid=238 comm="charger" name="processdump" dev="mmcblk0p6" ino=321 sc…
22 #avc: denied { entrypoint } for pid=258 comm="charger" name="bin" dev="mmcblk0p6" ino=321 sconte…
23 #avc: denied { read execute } for pid=239 comm="charger" name="bin" dev="mmcblk0p6" ino=321 scon…
24 #avc: denied { map } for pid=233 comm="charger" name="bin" dev="mmcblk0p6" ino=321 scontext=u:r:…
27 #avc: denied { entrypoint } for pid=235 comm="init" path="/vendor/bin/charger" dev="mmcblk0p6" i…
33 #avc: denied { read } for pid=307 comm="charger" name="u:object_r:ohos_param:s0" dev="tmpfs" ino…
34 #avc: denied { open } for pid=300 comm="charger" name="u:object_r:ohos_param:s0" dev="tmpfs" ino…
35 #avc: denied { map } for pid=312 comm="charger" name="u:object_r:ohos_param:s0" dev="tmpfs" ino=…
38 #avc: denied { read } for pid=219 comm="charger" name="u:object_r:ohos_boot_param:s0" dev="tmpfs…
[all …]
/base/security/selinux_adapter/sepolicy/ohos_policy/multimedia/player/system/
Dcodec_host.te14 #avc: denied { ioctl } for pid=413 comm="omx_enc_input" path="/dev/dri/card0" dev="tmpfs" ino=77…
18 #avc: denied { ioctl } for pid=428 comm="omx_dec_input" path="/dev/dri/card0" dev="tmpfs" ino=77…
22 #avc: denied { open } for pid=413 comm="codec_host" path="/dev/dri/card0" dev="tmpfs" ino=77 sco…
25 #avc: denied { read write } for pid=413 comm="codec_host" name="card0" dev="tmpfs" ino=77 sconte…
28 #avc: denied { search } for pid=413 comm="codec_host" name="dri" dev="tmpfs" ino=75 scontext=u:r…
31 #avc: denied { ioctl } for pid=413 comm="omx_dec_input" path="/dev/mpp_service" dev="tmpfs" ino=…
35 #avc: denied { read write } for pid=413 comm="omx_dec_input" name="mpp_service" dev="tmpfs" ino=…
38 #avc: denied { ioctl } for pid=413 comm="omx_dec_output" path="/dev/rga" dev="tmpfs" ino=169 ioc…
43 #avc: denied { use } for pid=2003 comm="src:src" path="/dmabuf:" dev="dmabuf" ino=37677 scontext…
52 #avc: denied { use } for pid=2003 comm="src:src" path="/dev/ashmem" dev="tmpfs" ino=166 scontext…
[all …]
/base/update/updater/test/unittest/test_data/updater/
Dfstab.updater4 /dev/block/platform/soc/10100000.himci.eMMC/by-name/system /system ext4 ro,barrier=1 wait
5 /dev/block/platform/soc/10100000.himci.eMMC/by-name/vendor /vendor ext4 ro,barrier=1 wait
6 /dev/block/platform/soc/10100000.himci.eMMC/by-name/hos /hos ext4 nosuid,nodev,noatime,barrier=1,da…
7 /dev/block/platform/soc/10100000.himci.eMMC/by-name/userdata /data ext4 nosuid,nodev,noatime,barrie…
8 /dev/block/platform/soc/10100000.himci.eMMC/by-name/misc /misc none none wait
9 /dev/block/platform/soc/100f0000.himci.SD/mmcblk1p1 /sdcard vfat rw wait
/base/security/selinux_adapter/sepolicy/ohos_policy/drivers/external_device_manager/system/
Dappspawn.te14 …ied { map } for pid=246 comm="appspawn" path="/dev/__parameters__/u:object_r:arkcompiler_param:s…
15 …ed { open } for pid=246 comm="appspawn" path="/dev/__parameters__/u:object_r:arkcompiler_param:s…
16 # avc: denied { read } for pid=246 comm="appspawn" name="u:object_r:arkcompiler_param:s0" dev="t…
19 …denied { map } for pid=246 comm="appspawn" path="/dev/__parameters__/u:object_r:arkui_param:s0"
20 …enied { open } for pid=246 comm="appspawn" path="/dev/__parameters__/u:object_r:arkui_param:s0"
21 # avc: denied { read } for pid=246 comm="appspawn" name="u:object_r:arkui_param:s0" dev="tmpfs" …
24 # avc: denied { getattr } for pid=246 comm="appspawn" path="/sys/devices/system/cpu/online" dev=…
25 # avc: denied { open } for pid=246 comm="appspawn" path="/sys/devices/system/cpu/online" dev="sy…
26 # avc: denied { read } for pid=246 comm="appspawn" name="online" dev="sysfs" ino=4917 scontext=u…
/base/security/selinux_adapter/sepolicy/ohos_policy/drivers/peripheral/intelligent_voice/vendor/
Dintell_voice_host.te23 …d { open } for pid=1394 comm="hdf_devhost" path="/dev/__parameters__/u:object_r:debug_param:s0"
24 …ed { map } for pid=1484 comm="hdf_devhost" path="/dev/__parameters__/u:object_r:debug_param:s0"
25 # avc: denied { read } for pid=1256 comm="hdf_devhost" name="u:object_r:debug_param:s0" dev="tmp…
28 # avc: denied { search } for pid=1506 comm="intell_voice_ho" name="socket" dev="tmpfs" ino=109 s…
31 # avc: denied { open } for pid=1394 comm="hdf_devhost" path="/proc/sys/vm/overcommit_memory" dev
32 # avc: denied { read } for pid=1256 comm="hdf_devhost" name="overcommit_memory" dev="proc" ino=2…
38 # avc: denied { open } for pid=1394 comm="hdf_devhost" path="/sys/devices/system/cpu/online" dev
39 …r } for pid=1129 comm="hdf_devhost" path="/sys/devices/system/cpu/online" dev="sysfs" ino=33295 s…
40 # avc: denied { read } for pid=1256 comm="hdf_devhost" name="online" dev="sysfs" ino=33295 scont…
47 …d { open } for pid=1394 comm="hdf_devhost" path="/dev/__parameters__/u:object_r:hilog_param:s0"
[all …]
/base/security/selinux_adapter/sepolicy/ohos_policy/msdp/devicestatus/system/
Dmsdp_sa.te18 #avc: denied { search } for pid=538 comm="msdp" name="socket" dev="tmpfs" ino=40 scontext=u:r:ms…
38 #avc: denied { search } for pid=431 comm="msdp" name="/" dev="mmcblk0p12" ino=3 scontext=u:r:msd…
44 #avc: denied { watch } for pid=453 comm="device_status_s" path="/dev/input" dev="tmpfs" ino=77 s…
45 #avc: denied { open } for pid=1729 comm="device_status_s" path="/dev/input" dev="tmpfs" ino=77 s…
46 #avc: denied { read } for pid=1765 comm="device_status_s" name="input" dev="tmpfs" ino=77 sconte…
47 #avc: denied { search } for pid=1737 comm="device_status_s" name="input" dev="tmpfs" ino=77 scon…
48 #avc: denied { getattr } for pid=1741 comm="device_status_s" path="/dev/input" dev="tmpfs" ino=7…
51 #avc: denied { getattr } for pid=1741 comm="device_status_s" path="/dev/input/event3" dev="tmpfs…
52 #avc: denied { read write } for pid=1897 comm="device_status_s" name="event7" dev="tmpfs" ino=32…
53 #avc: denied { open } for pid=1897 comm="device_status_s" path="/dev/input/event7" dev="tmpfs" i…
[all …]
/base/security/selinux_adapter/sepolicy/ohos_policy/web/webview/system/
Disolated_render.te14 # avc: denied { use } for pid=4973 comm="Chrome_ChildIOT" path="/dmabuf:" dev="dmabuf" ino=34734…
17 # avc: denied { search } for pid=5103 comm="ThreadPoolForeg" name="/" dev="cgroup2" ino=1 sconte…
20 … for pid=5103 comm="ei.hmos.browser" path="/data/storage/el1/bundle/nweb" dev="sdd78" ino=1840 sc…
23 # avc: denied { open } for pid=5103 comm="ei.hmos.browser" path="/dev/ashmem" dev="tmpfs" ino=49…
26 # avc: denied { search } for pid=3061 comm="ei.hmos.browser" name="socket" dev="tmpfs" ino=79 sc…
29 # avc: denied { use } for pid=5103 comm="Chrome_ChildIOT" path="/dev/ashmem" dev="tmpfs" ino=490…
35 …72672E6368726F6D69756D2E4368726F6D69756D2E416F6E624B66202864656C6574656429 dev="sdd78" ino=9424 sc…
38 # avc: denied { use } for pid=5103 comm="ei.hmos.browser" path="socket:[33368]" dev="sockfs" ino…
41 # avc: denied { write } for pid=5103 comm="ei.hmos.browser" path="pipe:[45491]" dev="pipefs" ino…
44 # avc: denied { write } for pid=5103 comm="CompositorTileW" path="socket:[33368]" dev="sockfs" i…
[all …]

12345678910>>...12