Home
last modified time | relevance | path

Searched refs:chain (Results 1 – 14 of 14) sorted by relevance

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DClusterChainDirectory.java46 final ClusterChain chain; field in ClusterChainDirectory
48 protected ClusterChainDirectory(ClusterChain chain, boolean isRoot) { in ClusterChainDirectory() argument
50 super((int)(chain.getLengthOnDisk() / FatDirectoryEntry.SIZE), in ClusterChainDirectory()
51 chain.isReadOnly(), isRoot); in ClusterChainDirectory()
53 this.chain = chain; in ClusterChainDirectory()
57 ClusterChain chain) throws IOException { in readRoot() argument
60 new ClusterChainDirectory(chain, true); in readRoot()
88 this.chain.readData(0, data); in read()
94 chain.writeData(0, data); in write()
95 final long trueSize = chain.getLengthOnDisk(); in write()
[all …]
DClusterChain.java145 final long[] chain = getFat().getChain(getStartCluster()); in getChainLength() local
146 return chain.length; in getChainLength()
164 final long[] chain = fat.allocNew(nrClusters); in setChainLength() local
165 this.startCluster = chain[0]; in setChainLength()
167 final long[] chain = fat.getChain(startCluster); in setChainLength() local
169 if (nrClusters != chain.length) { in setChainLength()
170 if (nrClusters > chain.length) { in setChainLength()
172 int count = nrClusters - chain.length; in setChainLength()
181 fat.setEof(chain[nrClusters - 1]); in setChainLength()
182 for (int i = nrClusters; i < chain.length; i++) { in setChainLength()
[all …]
DFatFile.java37 private final ClusterChain chain; field in FatFile
39 private FatFile(FatDirectoryEntry myEntry, ClusterChain chain) { in FatFile() argument
43 this.chain = chain; in FatFile()
91 chain.setSize(length); in setLength()
93 this.entry.setStartCluster(chain.getStartCluster()); in setLength()
126 chain.readData(offset, dest); in read()
157 chain.writeData(offset, srcBuf); in write()
192 return chain; in getChain()
204 ", first cluster=" + chain.getStartCluster() + "]"; in toString()
DAbstractDirectory.java310 final ClusterChain chain = new ClusterChain(fat, false); in createSub() local
311 chain.setChainLength(1); in createSub()
314 entry.setStartCluster(chain.getStartCluster()); in createSub()
317 new ClusterChainDirectory(chain, false); in createSub()
DFat.java243 long[] chain = new long[count]; in getChain() local
244 chain[0] = startCluster; in getChain()
249 chain[++i] = cluster; in getChain()
251 return chain; in getChain()
DFatLfnDirectory.java427 final ClusterChain chain = new ClusterChain( in read() local
432 new ClusterChainDirectory(chain, false); in read()
/tools/test/connectivity/acts/tests/google/wifi/
DWifiSensitivityTest.py402 for chain, rate in itertools.product(chain_mask, rates):
403 if str(chain) in ["0", "1"] and rate[1] == 2:
409 str(rate[0]).replace(".", "p"), rate[1], chain)
412 channel, mode, rate[0], rate[1], chain)
/tools/test/connectivity/acts/framework/acts/controllers/ap_lib/
Dhostapd_constants.py243 itertools.chain(
247 itertools.chain(
Dhostapd.py192 pairs = itertools.chain(pairs, config_pairs)
/tools/test/connectivity/tools/lab/metrics/
Dprocess_time_metric.py95 return list(itertools.chain(adb_result, fastboot_result))
/tools/apksig/src/apksigner/java/com/android/apksigner/
Dhelp_lineage.txt48 --ks Load private key and certificate chain from the Java
136 --cert Load certificate chain from the specified file. The file
Dhelp_rotate.txt51 --ks Load private key and certificate chain from the Java
139 --cert Load certificate chain from the specified file. The file
Dhelp_sign.txt99 --ks Load private key and certificate chain from the Java
187 --cert Load certificate chain from the specified file. The file
/tools/asuite/aidegen_functional_test/
Daidegen_functional_test_main.py189 return itertools.chain(cmp_iter1, cmp_iter2)