| /base/startup/init/ueventd/etc/ |
| D | ueventd.config | 16 /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/ |
| D | partitions.cpp | 28 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 …]
|
| D | do_partition.cpp | 68 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/ |
| D | file_contexts | 33 /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/block/by-name/misc u:object_r:updater_block_file:s0 39 /dev/block/mmcblk0p2 u:object_r:updater_block_file:s0 40 /dev/block/by-name/bootctrl u:object_r:updater_block_file:s0 41 /dev/block/mmcblk0p3 u:object_r:updater_block_file:s0 42 /dev/bus(/.*)? u:object_r:dev_bus_file:s0 [all …]
|
| /base/msdp/device_status/intention/cooperate/plugin/src/ |
| D | input_device_manager.cpp | 36 InputDeviceManager::Device::Device(std::shared_ptr<IDevice> dev) in Device() argument 37 : device_(dev) in Device() 249 std::shared_ptr<Device> dev = devIter->second; in GetCooperateDhids() local 250 if (!dev->IsPointerDevice()) { in GetCooperateDhids() 254 inputDeviceDhids.push_back(dev->GetDhid()); in GetCooperateDhids() 258 const std::string pointerNetworkId { dev->IsRemote() ? dev->GetNetworkId() : localNetworkId }; in GetCooperateDhids() 260 for (const auto &[id, dev] : devices_) { in GetCooperateDhids() 261 CHKPC(dev); in GetCooperateDhids() 262 const std::string networkId { dev->IsRemote() ? dev->GetNetworkId() : localNetworkId }; in GetCooperateDhids() 266 if (dev->GetKeyboardType() == IDevice::KEYBOARD_TYPE_ALPHABETICKEYBOARD) { in GetCooperateDhids() [all …]
|
| /base/usb/usb_manager/test/native/mock/include/ |
| D | usb_impl_mock.h | 57 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/msdp/device_status/services/interaction/coordination/src/ |
| D | coordination_device_manager.cpp | 39 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/services/native/src/ |
| D | usb_host_manager.cpp | 76 bool UsbHostManager::AddDevice(UsbDevice *dev) in AddDevice() argument 78 if (dev == nullptr) { in AddDevice() 83 auto isSuccess = PublishCommonEvent(CommonEventSupport::COMMON_EVENT_USB_DEVICE_ATTACHED, *dev); in AddDevice() 88 uint8_t busNum = dev->GetBusNum(); in AddDevice() 89 uint8_t devNum = dev->GetDevAddr(); in AddDevice() 101 devices_.insert(std::pair<std::string, UsbDevice *>(name, dev)); in AddDevice() 104 UsbMassStorageNotification::GetInstance()->SendNotification(*dev); in AddDevice() 109 bool UsbHostManager::PublishCommonEvent(const std::string &event, const UsbDevice &dev) in PublishCommonEvent() argument 117 auto jsonString = Json::writeString(builder, dev.ToJson()); in PublishCommonEvent() 122 ReportHostPlugSysEvent(event, dev); in PublishCommonEvent() [all …]
|
| /base/security/selinux_adapter/sepolicy/ohos_policy/drivers/adapter/vendor/ |
| D | sample_host.te | 15 #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/intention/services/device_manager/src/ |
| D | device_manager.cpp | 188 std::shared_ptr<IDevice> dev = FindDevice(devPath); in AddDevice() local 189 if (dev != nullptr) { in AddDevice() 191 return dev; in AddDevice() 201 dev = std::make_shared<Device>(deviceId); in AddDevice() 202 dev->SetDevPath(devPath); in AddDevice() 203 dev->SetSysPath(std::string(rpath)); in AddDevice() 204 if (dev->Open() != RET_OK) { in AddDevice() 208 auto ret = devices_.insert_or_assign(dev->GetId(), dev); in AddDevice() 210 FI_HILOGD("\'%{public}s\' added", dev->GetName().c_str()); in AddDevice() 211 OnDeviceAdded(dev); in AddDevice() [all …]
|
| /base/security/selinux_adapter/sepolicy/ohos_policy/distributedhardware/device_manager/system/ |
| D | device_manager.te | 18 #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/ |
| D | updater.te | 16 #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 …]
|
| D | init.te | 15 #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 …]
|
| D | write_updater.te | 14 … { map } for pid=1449 comm="write_updater" path="/dev/__parameters__/u:object_r:debug_param:s0" … 15 … { open } for pid=1449 comm="write_updater" path="/dev/__parameters__/u:object_r:debug_param:s0" … 16 # avc: denied { read } for pid=1449 comm="write_updater" name="u:object_r:debug_param:s0" dev="t… 19 # avc: denied { search } for pid=1449 comm="write_updater" name="by-name" dev="tmpfs" ino=12 sco… 22 # avc: denied { search } for pid=1449 comm="write_updater" name="block" dev="tmpfs" ino=6 sconte… 25 # avc: denied { read write } for pid=1449 comm="write_updater" path="/dev/console" dev="tmpfs" i… 28 # avc: denied { read } for pid=1449 comm="write_updater" name="misc" dev="tmpfs" ino=37 scontext… 31 # avc: denied { read write } for pid=1497 comm="write_updater" name="mmcblk0p2" dev="tmpfs" ino=… 32 # avc: denied { open } for pid=1497 comm="write_updater" path="/dev/block/mmcblk0p2" dev="tmpfs"… 33 # avc: denied { ioctl } for pid=1559 comm="write_updater" path="/dev/block/mmcblk0p2" dev="tmpfs… [all …]
|
| D | updater_binary.te | 16 #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 …]
|
| D | ueventd.te | 16 #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 …]
|
| D | hilogd.te | 15 # 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 …]
|
| /base/security/selinux_adapter/sepolicy/ohos_policy/window/window_manager/system/ |
| D | snapshot_display.te | 17 …# avc: denied { search } for pid=1481 comm="snapshot_displa" name="/" dev="mmcblk0p15" ino=3 sc… 19 …# avc: denied { search } for pid=1481 comm="snapshot_displa" name="local" dev="mmcblk0p15" ino=… 21 …# avc: denied { use } for pid=1481 comm="snapshot_displa" path="/dev/pts/0" dev="devpts" ino=3 … 23 …# avc: denied { read write } for pid=1481 comm="snapshot_displa" path="socket:[20370]" dev="soc… 25 …ad } for pid=1636 comm="snapshot_displa" name="u:object_r:debug_param:s0" dev="tmpfs" ino=72 scon… 27 …# avc: denied { read write } for pid=1636 comm="snapshot_displa" path="/dev/console" dev="tmpfs… 29 …# avc: denied { read write } for pid=1636 comm="snapshot_displa" path="/dev/pts/0" dev="devpts"… 31 …or pid=1571 comm="snapshot_displa" name="u:object_r:persist_sys_param:s0" dev="tmpfs" ino=71 scon… 35 …# avc: denied { read write } for pid=1636 comm="snapshot_displa" path="/dev/tty" dev="tmpfs" in… 37 …ad } for pid=1475 comm="snapshot_displa" path="/dev/__parameters__/u:object_r:arkcompiler_param:s… [all …]
|
| /base/security/selinux_adapter/sepolicy/ohos_policy/powermgr/battery_manager/system/ |
| D | charger.te | 16 #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/hiviewdfx/faultloggerd/test/resource/testdata/ |
| D | testmaps_64 | 12 7f0ab80000-7f0b580000 rw-s 00000000 00:12 48 /dev/__parameters__/u:obje… 63 7f8b8bf000-7f8b8c0000 rw-s 00000000 00:12 101 /dev/__parameters__/u:obje… 64 …o7f8b8c7000-7f8b8c8000 rw-s 00000000 00:12 100 /dev/__parameters__/u:ob… 65 7f8b8c8000-7f8b8c9000 rw-s 00000000 00:12 99 /dev/__parameters__/u:obje… 66 7f8b8c9000-7f8b8ca000 rw-s 00000000 00:12 98 /dev/__parameters__/u:obje… 67 7f8b8ca000-7f8b8cb000 rw-s 00000000 00:12 97 /dev/__parameters__/u:obje… 68 7f8b8cb000-7f8b8cc000 rw-s 00000000 00:12 96 /dev/__parameters__/u:obje… 69 7f8b8cc000-7f8b8cd000 rw-s 00000000 00:12 95 /dev/__parameters__/u:obje… 70 7f8b8cd000-7f8b8ce000 rw-s 00000000 00:12 94 /dev/__parameters__/u:obje… 72 7f8b8d2000-7f8b8d3000 rw-s 00000000 00:12 93 /dev/__parameters__/u:obje… [all …]
|
| D | testmaps_32 | 12 f6dc0000-f77c0000 rw-s 00000000 00:12 101 /dev/__parameters__/u:obje… 65 f7b22000-f7b23000 rw-s 00000000 00:12 100 /dev/__parameters__/u:obje… 66 f7b23000-f7b24000 rw-s 00000000 00:12 99 /dev/__parameters__/u:obje… 67 f7b24000-f7b25000 rw-s 00000000 00:12 98 /dev/__parameters__/u:obje… 68 f7b25000-f7b26000 rw-s 00000000 00:12 97 /dev/__parameters__/u:obje… 69 f7b26000-f7b27000 rw-s 00000000 00:12 96 /dev/__parameters__/u:obje… 70 f7b27000-f7b28000 rw-s 00000000 00:12 95 /dev/__parameters__/u:obje… 71 f7b28000-f7b29000 rw-s 00000000 00:12 94 /dev/__parameters__/u:obje… 72 f7b29000-f7b2a000 rw-s 00000000 00:12 93 /dev/__parameters__/u:obje… 73 f7b2a000-f7b2b000 rw-s 00000000 00:12 92 /dev/__parameters__/u:obje… [all …]
|
| /base/security/selinux_adapter/sepolicy/ohos_policy/multimedia/player/system/ |
| D | codec_host.te | 14 #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/security/selinux_adapter/sepolicy/ohos_policy/powermgr/power_manager/system/ |
| D | power_shell.te | 14 …denied { map } for pid=4345 comm="power-shell" path="/dev/parameters/u:object_r:debug_param:s0" de… 15 … { read open } for pid=4345 comm="power-shell" path="/dev/parameters/u:object_r:debug_param:s0" de… 16 …enied { read } for pid=4345 comm="power-shell" path="/dev/parameters/u:object_r:debug_param:s0" de… 19 # avc: denied { write } for pid=4345 comm="power-shell" path="/dev/kmsg" dev="tmpfs" ino=116 sconte… 22 # avc: denied { search } for pid=4337 comm="power-shell" name="socket" dev="tmpfs" ino=118 scontext… 25 # avc: denied { ioctl } for pid=4337 comm="power-shell" path="/dev/pts/2" dev="devpts" ino=5 ioctlc… 26 # avc: denied { read write } for pid=4345 comm="power-shell" path="/dev/pts/0" dev="devpts" ino=3 s… 27 # avc: denied { write } for pid=4337 comm="power-shell" path="/dev/pts/2" dev="devpts" ino=5 sconte… 33 …denied { map } for pid=4337 comm="power-shell" path="/dev/parameters/u:object_r:hilog_param:s0" de… 34 … { read open } for pid=4337 comm="power-shell" path="/dev/parameters/u:object_r:hilog_param:s0" de… [all …]
|
| /base/security/selinux_adapter/sepolicy/ohos_policy/tee/tee_client/system/ |
| D | tlogcat.te | 18 #avc: denied { ioctl } for pid=677 comm="tlogcat" path="/data/log/tee/teeOS_log-0" dev="sdd80" i… 22 #avc: denied { read } for pid=654 comm="tlogcat" name="u:object_r:debug_param:s0" dev="tmpfs" in… 23 …denied { open } for pid=654 comm="tlogcat" path="/dev/__parameters__/u:object_r:debug_param:s0" … 24 … denied { map } for pid=654 comm="tlogcat" path="/dev/__parameters__/u:object_r:debug_param:s0" … 26 #avc: denied { search } for pid=677 comm="tlogcat" name="/" dev="sdd80" ino=3 scontext=u:r:tlogc… 28 #avc: denied { search } for pid=677 comm="tlogcat" name="socket" dev="tmpfs" ino=38 scontext=u:r… 30 #avc: denied { read } for pid=677 comm="tlogcat" name="u:object_r:hilog_param:s0" dev="tmpfs" in… 31 …denied { open } for pid=677 comm="tlogcat" path="/dev/__parameters__/u:object_r:hilog_param:s0" … 32 … denied { map } for pid=677 comm="tlogcat" path="/dev/__parameters__/u:object_r:hilog_param:s0" … 34 #avc: denied { read } for pid=677 comm="tlogcat" name="overcommit_memory" dev="proc" ino=3092 sc… [all …]
|
| /base/update/updater/test/unittest/test_data/updater/ |
| D | fstab.updater | 4 /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
|