HomeSort by relevance Sort by last modified time
    Searched defs:uevent (Results 1 - 3 of 3) sorted by null

  /system/core/init/
devices_test.cpp 32 void TestGetSymlinks(const std::string& platform_device, const Uevent& uevent,
44 mkdir_recursive(android::base::Dirname(fake_sys_root.path + uevent.path), 0777);
47 result = device_handler_.GetBlockDeviceSymlinks(uevent);
66 Uevent uevent = { local
74 device_handler_tester_.TestGetSymlinks(platform_device, uevent, expected_result);
80 Uevent uevent = { local
91 device_handler_tester_.TestGetSymlinks(platform_device, uevent, expected_result)
96 Uevent uevent = { local
111 Uevent uevent = { local
127 Uevent uevent = { local
138 Uevent uevent = { local
149 Uevent uevent = { local
160 Uevent uevent = { local
171 Uevent uevent = { local
    [all...]
uevent_listener.cpp 27 #include <cutils/uevent.h>
32 static void ParseEvent(const char* msg, Uevent* uevent) {
33 uevent->partition_num = -1;
34 uevent->major = -1;
35 uevent->minor = -1;
36 uevent->action.clear();
37 uevent->path.clear();
38 uevent->subsystem.clear();
39 uevent->firmware.clear()
136 Uevent uevent; local
211 Uevent uevent; local
    [all...]
ueventd.cpp 45 // At a high level, ueventd listens for uevent messages generated by the kernel through a netlink
53 // /sys and writing 'add' to each 'uevent' file that it finds. This causes the kernel to generate
54 // and resend uevent messages for all of the currently registered devices. This is done, because
56 // to receive their uevent messages and handle them appropriately. This process is known as
64 // Handling of uevent messages has two unique properties:
67 // that no file system operations are done while the uevent process has an abnormal egid or
76 // device when its uevent is handled, results in multiple restorecon operations being done on a
78 // than to do restorecon on each device as its uevent is handled. This only applies to cold boot;
79 // once that has completed, restorecon is done for each device as its uevent is handled.
85 // 2) ueventd forks 'n' separate uevent handler subprocesses and has each of them to handle th
135 auto& uevent = uevent_queue_[i]; local
    [all...]

Completed in 78 milliseconds