Searched refs:aid (Results 1 – 5 of 5) sorted by relevance
/build/make/tools/fs_config/ |
D | test_fs_config_generator.py | 48 aid = AID('AID_FOO_BAR', '0xFF', 'myfakefile', '/system/bin/sh') 49 self.assertEqual(aid.identifier, 'AID_FOO_BAR') 50 self.assertEqual(aid.value, '0xFF') 51 self.assertEqual(aid.found, 'myfakefile') 52 self.assertEqual(aid.normalized_value, '255') 53 self.assertEqual(aid.friendly, 'foo_bar') 54 self.assertEqual(aid.login_shell, '/system/bin/sh') 56 aid = AID('AID_MEDIA_EX', '1234', 'myfakefile', '/vendor/bin/sh') 57 self.assertEqual(aid.identifier, 'AID_MEDIA_EX') 58 self.assertEqual(aid.value, '1234') [all …]
|
D | fs_config_generator.py | 94 def get_login_and_uid_cleansed(aid): argument 109 logon = aid.friendly 110 uid = aid.normalized_value 431 aid = AID(identifier, value, self._aid_header, '/system/bin/sh') 434 if aid.friendly in self._aid_name_to_value: 437 if value in self._aid_value_to_name and aid.identifier not in AIDHeaderParser._COLLISION_OK: 441 self._aid_name_to_value[aid.friendly] = aid 442 self._aid_value_to_name[value] = aid.friendly 464 for aid in self._aid_value_to_name: 466 if Utils.in_any_range(int(aid, 0), ranges): [all …]
|
D | Android.bp | 63 …cmd: "$(location fs_config_generator) oemaid --aid-header=$(location :android_filesystem_config_he… 84 …cmd: "$(location fs_config_generator) passwd --partition=system --aid-header=$(location :android_f… 101 …cmd: "$(location fs_config_generator) passwd --partition=vendor --aid-header=$(location :android_f… 119 …cmd: "$(location fs_config_generator) passwd --partition=odm --aid-header=$(location :android_file… 137 …cmd: "$(location fs_config_generator) passwd --partition=product --aid-header=$(location :android_… 155 …cmd: "$(location fs_config_generator) passwd --partition=system_ext --aid-header=$(location :andro… 176 …cmd: "$(location fs_config_generator) group --partition=system --aid-header=$(location :android_fi… 193 …cmd: "$(location fs_config_generator) group --partition=vendor --aid-header=$(location :android_fi… 211 …cmd: "$(location fs_config_generator) group --partition=odm --aid-header=$(location :android_files… 229 …cmd: "$(location fs_config_generator) group --partition=product --aid-header=$(location :android_f… [all …]
|
D | Android.mk | 119 --aid-header $(PRIVATE_ANDROID_FS_HDR) \ 146 --aid-header $(PRIVATE_ANDROID_FS_HDR) \ 176 --aid-header $(PRIVATE_ANDROID_FS_HDR) \ 203 --aid-header $(PRIVATE_ANDROID_FS_HDR) \ 233 --aid-header $(PRIVATE_ANDROID_FS_HDR) \ 260 --aid-header $(PRIVATE_ANDROID_FS_HDR) \ 290 --aid-header $(PRIVATE_ANDROID_FS_HDR) \ 317 --aid-header $(PRIVATE_ANDROID_FS_HDR) \
|
/build/make/tools/fs_config/end_to_end_test/ |
D | run_test.sh | 4 …--aid-header $ANDROID_BUILD_TOP/system/core/libcutils/include/private/android_filesystem_config.h \ 16 …--aid-header $ANDROID_BUILD_TOP/system/core/libcutils/include/private/android_filesystem_config.h \ 28 …--aid-header $ANDROID_BUILD_TOP/system/core/libcutils/include/private/android_filesystem_config.h \ 39 …--aid-header $ANDROID_BUILD_TOP/system/core/libcutils/include/private/android_filesystem_config.h \ 50 …--aid-header $ANDROID_BUILD_TOP/system/core/libcutils/include/private/android_filesystem_config.h \ 61 …--aid-header $ANDROID_BUILD_TOP/system/core/libcutils/include/private/android_filesystem_config.h \
|