/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
D | ClusterChainDirectory.java | 46 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 …]
|
D | FatFile.java | 37 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()
|
D | AbstractDirectory.java | 310 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()
|
D | Fat.java | 243 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()
|
D | FatLfnDirectory.java | 427 final ClusterChain chain = new ClusterChain( in read() local 432 new ClusterChainDirectory(chain, false); in read()
|
/tools/test/connectivity/acts_tests/tests/google/wifi/ |
D | WifiSensitivityTest.py | 559 for chain, rate in itertools.product(chain_mask, rates): 567 chain_mask=chain) 568 if chain in ['0', '1'] and rate[1] == 2: 576 rate.streams, chain)) 581 rate.streams, chain)) 829 for chain, mode in itertools.product(chain_mask, requested_modes): 849 chain_mask=chain, 853 if str(chain) in ['0', '1'] and rate[1] == 2: 861 rate.streams, chain, angle)) 866 rate.streams, chain, angle))
|
D | WifiPingTest.py | 526 for channel, mode, chain, test_type in itertools.product( 532 chain) 538 chain_mask=chain)
|
/tools/test/connectivity/acts/framework/acts/controllers/ap_lib/ |
D | hostapd_constants.py | 333 itertools.chain(range(6, 14), range(40, 65, 8), range(104, 145, 8), 337 itertools.chain(range(1, 8), range(36, 61, 8), range(100, 141, 8),
|
D | hostapd.py | 195 pairs = itertools.chain(pairs, config_pairs)
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/ |
D | wifi_performance_test_utils.py | 861 for idx, chain in enumerate(rf_map_by_network[net_id]): 862 if chain: 865 'dut_chain': chain 1499 def set_ini_single_chain_mode(dut, chain): argument 1502 'gSetTxChainmask1x1': chain + 1, 1503 'gSetRxChainmask1x1': chain + 1,
|
/tools/test/connectivity/acts/framework/acts/ |
D | config_parser.py | 253 for item in itertools.chain(configs.items(), testbed.items()):
|
D | test_runner.py | 306 itertools.chain(
|
/tools/apksig/src/apksigner/java/com/android/apksigner/ |
D | help_lineage.txt | 48 --ks Load private key and certificate chain from the Java 136 --cert Load certificate chain from the specified file. The file
|
D | help_rotate.txt | 51 --ks Load private key and certificate chain from the Java 139 --cert Load certificate chain from the specified file. The file
|
D | help_sign.txt | 127 --ks Load private key and certificate chain from the Java 215 --cert Load certificate chain from the specified file. The file
|
/tools/repohooks/rh/ |
D | config.py | 326 for config in itertools.chain(
|
/tools/test/openhst/ |
D | stress_test.proto | 96 // on the name), only the "latest" in the include chain will be used.
|
/tools/asuite/aidegen_functional_test/ |
D | aidegen_functional_test_main.py | 526 return itertools.chain(cmp_iter1, cmp_iter2)
|