Searched refs:encoding (Results 1 – 25 of 32) sorted by relevance
12
/tools/test/connectivity/acts/framework/tests/ |
D | acts_utils_test.py | 462 encoding='utf-8'), 464 encoding='utf-8') 473 encoding='utf-8'), 475 encoding='utf-8') 484 encoding='utf-8'), 486 encoding='utf-8') 496 encoding='utf-8'), 498 encoding='utf-8')
|
/tools/apksig/src/apksigner/java/com/android/apksigner/ |
D | help_sign.txt | 150 --pass-encoding Additional character encoding (e.g., ibm437 or utf-8) to 154 produced by encoding the password using the console's 155 character encoding. apksigner by default tries to decrypt 160 and may need to be provided with --pass-encoding when a 161 non-ASCII password is used. --pass-encoding may also need 230 The --pass-encoding parameter is not needed if apksigner is being run on 232 $ apksigner sign --ks release.jks --pass-encoding ibm437 app.apk 236 $ apksigner sign --ks release.jks --pass-encoding utf-8 app.apk
|
D | help_lineage.txt | 99 --pass-encoding Additional character encoding (e.g., ibm437 or utf-8) to 103 produced by encoding the password using the console's 104 character encoding. apksigner by default tries to decrypt 109 and may need to be provided with --pass-encoding when a 110 non-ASCII password is used. --pass-encoding may also need
|
D | help_rotate.txt | 102 --pass-encoding Additional character encoding (e.g., ibm437 or utf-8) to 106 produced by encoding the password using the console's 107 character encoding. apksigner by default tries to decrypt 112 and may need to be provided with --pass-encoding when a 113 non-ASCII password is used. --pass-encoding may also need
|
D | PasswordRetriever.java | 234 for (Charset encoding : additionalEncodings) { in addPasswords() 238 char[] encodedPwd = castBytesToChars(encodePassword(pwd, encoding)); in addPasswords() 286 private static char[] decodePassword(byte[] pwdBytes, Charset encoding) throws IOException { in decodePassword() argument 288 encoding.newDecoder() in decodePassword()
|
/tools/test/connectivity/acts/framework/acts/libs/proc/ |
D | job.py | 55 self._stdout_str = self._raw_stdout.decode(encoding=self._encoding, 64 self._stderr_str = self._raw_stderr.decode(encoding=self._encoding, 76 encoding='utf-8'): argument 94 self._encoding = encoding 156 encoding=io_encoding,
|
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/dev_utils/ |
D | apollo_log_decoder.py | 64 _, encoding, message = logline.split("|", 2) 66 if encoding in decoders.keys(): 67 message = decoders[encoding](message)
|
/tools/platform-compat/build/ |
D | process_compat_config.py | 94 self.tree.write(filename, encoding='utf-8', xml_declaration=True) 98 self.strip_config_for_device().write(filename, encoding='utf-8', xml_declaration=True)
|
/tools/asuite/aidegen/lib/ |
D | common_util.py | 616 with open(file_path, encoding='utf8') as infile: 633 with open(path, encoding=encode_type) as template:
|
D | source_locator.py | 413 with open(abs_java_path, encoding='utf8') as data:
|
/tools/test/connectivity/acts/framework/acts/controllers/ |
D | bluetooth_pts_device.py | 733 encoding='utf-8', 740 reparsed.toprettyxml(indent=" ", encoding="utf-8").decode())
|
D | android_device.py | 734 with open(adb_excerpt_path, 'w', encoding='utf-8') as out: 736 with open(in_file, 'r', encoding='utf-8', errors='replace') as f:
|
D | native.py | 64 str(response, encoding="utf8").rstrip().replace("\x00", ""))
|
/tools/test/connectivity/acts_tests/tests/google/fuchsia/wlan/ |
D | WlanFacadeTest.py | 54 encoding='us-ascii')
|
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/dev_utils/proto/google/protobuf/ |
D | descriptor.proto | 136 TYPE_SINT32 = 17; // Uses ZigZag encoding. 137 TYPE_SINT64 = 18; // Uses ZigZag encoding.
|
/tools/asuite/ |
D | asuite_run_unittests.py | 89 encoding='utf-8').splitlines()
|
/tools/tradefederation/core/atest/ |
D | atest_completion.sh | 31 print("\n".join(pickle.load(cache, encoding="utf-8")))
|
/tools/asuite/atest/ |
D | atest_completion.sh | 48 print("\n".join(pickle.load(cache, encoding="utf-8")))
|
/tools/test/connectivity/acts/framework/acts/controllers/sl4a_lib/ |
D | rpc_connection.py | 92 result = json.loads(str(resp, encoding='utf8'))
|
D | rpc_client.py | 304 result = json.loads(str(response, encoding='utf8'))
|
/tools/external_updater/ |
D | notifier.py | 96 encoding='ascii')
|
/tools/test/connectivity/acts/framework/acts/ |
D | records.py | 55 with io.open(self._path, 'a', encoding='utf-8') as f:
|
/tools/test/connectivity/acts/framework/acts/controllers/rohdeschwarz_lib/ |
D | contest.py | 415 encoding='utf-8',
|
/tools/test/connectivity/acts/framework/acts/controllers/utils_lib/ssh/ |
D | connection.py | 230 encoding=io_encoding)
|
/tools/asuite/aidegen_functional_test/ |
D | aidegen_functional_test_main.py | 660 with open(path, encoding='utf8') as template:
|
12