HomeSort by relevance Sort by last modified time
    Searched refs:DecodeUid (Results 1 - 6 of 6) sorted by null

  /system/core/init/
service_test.cpp 136 auto decoded_uid = DecodeUid("log");
143 auto decoded_uid = DecodeUid("shell");
152 auto decoded_uid = DecodeUid("system");
156 decoded_uid = DecodeUid("adb");
util.h 47 Result<uid_t> DecodeUid(const std::string& name);
util_test.cpp 126 TEST(util, DecodeUid) {
127 auto decoded_uid = DecodeUid("root");
131 decoded_uid = DecodeUid("toot");
135 decoded_uid = DecodeUid("123");
service.cpp 464 auto gid = DecodeUid(args[1]);
471 gid = DecodeUid(args[n]);
648 uid = DecodeUid(args[4]);
655 gid = DecodeUid(args[5]);
696 auto uid = DecodeUid(args[1]);
    [all...]
builtins.cpp 262 auto uid = DecodeUid(args[3]);
269 gid = DecodeUid(args[4]);
827 auto uid = DecodeUid(args[1]);
837 gid = DecodeUid(args[2]);
    [all...]
util.cpp 65 // DecodeUid() - decodes and returns the given string, which can be either the
67 Result<uid_t> DecodeUid(const std::string& name) {

Completed in 316 milliseconds