Searched refs:AID (Results 1 – 3 of 3) sorted by relevance
/build/make/tools/fs_config/ |
D | fs_config_generator.py | 121 class AID(object): class 168 friendly = identifier[len(AID.PREFIX):].lower() 169 self.friendly = AID._fixup_friendly(friendly) 193 return not name.startswith(AID.PREFIX) 206 if friendly in AID._FIXUPS: 207 return AID._FIXUPS[friendly] 310 re.compile(r'%sUNUSED[0-9].*' % AID.PREFIX), 311 re.compile(r'%sAPP' % AID.PREFIX), 312 re.compile(r'%sUSER' % AID.PREFIX) 314 _AID_DEFINE = re.compile(r'\s*#define\s+%s.*' % AID.PREFIX) [all …]
|
D | test_fs_config_generator.py | 8 from fs_config_generator import AID 48 aid = AID('AID_FOO_BAR', '0xFF', 'myfakefile', '/system/bin/sh') 56 aid = AID('AID_MEDIA_EX', '1234', 'myfakefile', '/vendor/bin/sh') 287 self.assertEqual(aid, AID('AID_OEM1', '0x1389', temp_file.name, '/vendor/bin/sh'))
|
D | README | 36 Either the C define for a valid AID or the friendly name. For instance both 38 AID section documented below. 58 The next section type is the "AID" section, for specifying OEM specific AIDS. 60 The AID section follows the following syntax:
|