/external/parameter-framework/upstream/test/functional-tests-legacy/PfwTestCase/Domains/ |
__init__.py | 2 Domains Package : All testcases about DOMAINS functions in PFW : 3 - domains configuration selections and restore 4 - domains creation and deletion 8 - elements sequences in domains 9 - domains split
|
tDomain_rename.py | 32 Renaming domains testcases 49 # Test of Domains - Rename 74 - domains correctly renamed 86 # Initial domains listing using "listDomains" command 87 log.I("Creating a domains listing backup") 90 assert err == None, "INFO : command [listDomains] - ERROR while listing domains" 92 # Saving initial domains names 96 log.I("Domains listing backup created") 98 # Checking domains number 107 log.I("%s domains names saved" % domains_nbr [all...] |
tDomain_creation_deletion.py | 50 # Test of Domains - Basic operations (creations/deletions) 74 - No domains list update 86 # Domains listing using "listDomains" command 87 log.I("Current domains listing") 90 assert err == None, "ERROR : command [listDomains] - Error while listing domains" 93 # Domains listing backup 104 log.I("Actual domains number : %s" % domains_nbr_init) 115 # Checking domains list integrity 116 log.I("Checking domains listing integrity after domain creation error") 117 ## Domains listing using "listDomains" comman [all...] |
/system/sepolicy/prebuilts/api/26.0/public/ |
vendor_toolbox.te | 6 # Do not allow domains to transition to vendor toolbox 9 # Do not allow non-vendor domains to transition 10 # to vendor toolbox except for the whitelisted domains.
|
logpersist.te | 1 # android debug logging, logpersist domains 19 # Following is a list of debug domains we know that transition to logpersist
|
/system/sepolicy/prebuilts/api/27.0/public/ |
vendor_toolbox.te | 6 # Do not allow domains to transition to vendor toolbox 9 # Do not allow non-vendor domains to transition 10 # to vendor toolbox except for the whitelisted domains.
|
logpersist.te | 1 # android debug logging, logpersist domains 19 # Following is a list of debug domains we know that transition to logpersist
|
/system/sepolicy/prebuilts/api/28.0/public/ |
vendor_toolbox.te | 6 # Do not allow domains to transition to vendor toolbox 9 # Do not allow non-vendor domains to transition 10 # to vendor toolbox except for the whitelisted domains.
|
logpersist.te | 1 # android debug logging, logpersist domains 19 # Following is a list of debug domains we know that transition to logpersist
|
attributes | 75 # These properties are not accessible from device-specific domains 110 # All domains that can override MLS restrictions. 118 # All domains used for apps. 124 # All domains used for apps with network access. 127 # All domains used for apps with bluetooth access. 130 # All domains used for binder service domains. 133 # update_engine related domains that need to apply an update and run 138 # All core domains (as opposed to vendor/device-specific domains) [all...] |
/system/sepolicy/public/ |
vendor_toolbox.te | 6 # Do not allow domains to transition to vendor toolbox 9 # Do not allow non-vendor domains to transition 10 # to vendor toolbox except for the whitelisted domains.
|
logpersist.te | 1 # android debug logging, logpersist domains 19 # Following is a list of debug domains we know that transition to logpersist
|
attributes | 75 # These properties are not accessible from device-specific domains 110 # All domains that can override MLS restrictions. 118 # All domains used for apps. 124 # All domains used for apps with network access. 127 # All domains used for apps with bluetooth access. 130 # All domains used for binder service domains. 133 # update_engine related domains that need to apply an update and run 138 # All core domains (as opposed to vendor/device-specific domains) [all...] |
/external/jcommander/ |
upload | 1 scp doc/index.html target/jcommander-1.27.jar beust.com@beust.com:domains/jcommander.org/html 3 scp -r target/site/apidocs beust.com@beust.com:domains/jcommander.org/html
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/ |
DomainList.java | 31 private ArrayList<String> domains; field in class:DomainList 34 * @param domains An ArrayList that contains only String objects. 35 * @param dontCopy true iff it is not possible for the domains ArrayList to be modified by someone else. 37 public DomainList(ArrayList<String> domains, boolean dontCopy) { 38 if (domains != null) 39 this.domains = (dontCopy ? domains : new ArrayList<String>(domains)); 41 this.domains = new ArrayList<String>(0); 48 return domains.size() [all...] |
/frameworks/base/services/core/java/com/android/server/pm/ |
IntentFilterVerificationKey.java | 26 public String domains; field in class:IntentFilterVerificationKey 30 public IntentFilterVerificationKey(String[] domains, String packageName, String className) { 32 for (String host : domains) { 35 this.domains = sb.toString(); 47 if (domains != null ? !domains.equals(that.domains) : that.domains != null) return false; 58 int result = domains != null ? domains.hashCode() : 0 [all...] |
/system/sepolicy/prebuilts/api/26.0/private/ |
halserverdomain.te | 2 ### Rules for all domains which offer a HAL service over HwBinder
|
attributes | 5 # domains. The goal is to not assign domain_deprecated to new domains
|
/system/sepolicy/prebuilts/api/27.0/private/ |
halserverdomain.te | 2 ### Rules for all domains which offer a HAL service over HwBinder
|
attributes | 5 # domains. The goal is to not assign domain_deprecated to new domains
|
/system/sepolicy/prebuilts/api/28.0/private/ |
halserverdomain.te | 2 ### Rules for all domains which offer a HAL service over HwBinder
|
/system/sepolicy/private/ |
halserverdomain.te | 2 ### Rules for all domains which offer a HAL service over HwBinder
|
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/ |
cpuinfo.h | 8 /* sched domains in each sched level of this CPU */ 15 extern struct bitmask **domains;
|
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_load_balance_test/ |
cpuset_sched_domains_check.c | 45 * check sched domains in system 47 * return 0 - sched domains is true 48 * 1 - sched domains is wrong, and print error info 72 tst_resm(TFAIL, "partition domains failed."); 84 bitmask_or(alldomains, alldomains, domains[i]); 86 for (cpu = bitmask_first(domains[i]); 87 cpu < bitmask_nbits(domains[i]); 88 cpu = bitmask_next(domains[i], cpu + 1)) { 89 if (bitmask_weight(domains[i]) == 1) { 92 domains[i]) [all...] |
/external/testng/ |
upload-beta | 2 scp `ls -tr target/*beta.zip|tail -1` beust:domains/testng.org/html
|