Home
last modified time | relevance | path

Searched refs:cluster (Results 1 – 4 of 4) sorted by relevance

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFat.java237 long cluster = startCluster; in getChain() local
238 while (!isEofCluster(entries[(int) cluster])) { in getChain()
240 cluster = entries[(int) cluster]; in getChain()
245 cluster = startCluster; in getChain()
247 while (!isEofCluster(entries[(int) cluster])) { in getChain()
248 cluster = entries[(int) cluster]; in getChain()
249 chain[++i] = cluster; in getChain()
260 public long getNextCluster(long cluster) { in getNextCluster() argument
261 testCluster(cluster); in getNextCluster()
262 long entry = entries[(int) cluster]; in getNextCluster()
[all …]
DClusterChain.java100 private long getDevOffset(long cluster, int clusterOffset) { in getDevOffset() argument
102 ((cluster - Fat.FIRST_CLUSTER) * clusterSize); in getDevOffset()
/tools/tradefederation/core/src/com/android/tradefed/config/gcs/
DGCSConfigurationServer.java91 protected String getHostConfig(String hostname, String cluster) throws ConfigurationException { in getHostConfig() argument
94 if (cluster == null) { in getHostConfig()
102 System.out.printf("Use cluster name %s to get config.\n", cluster); in getHostConfig()
104 hostConfigMapping, cluster, (key, candidate) -> key.equals(candidate)); in getHostConfig()
/tools/metalava/src/main/java/com/android/tools/metalava/
DApiLint.kt1952 fun cluster(args: List<ParameterItem>): MutableSet<String> { in <lambda>() method
1969 val commonArgs = cluster(methodList[0].parameters()) in <lambda>()
1971 val clustered = cluster(m.parameters()) in <lambda>()
1983 val cluster = cluster(sig) in <lambda>() constant
1984 if (!cluster.containsAll(commonArgs)) { in <lambda>()