HomeSort by relevance Sort by last modified time
    Searched defs:getBytes (Results 151 - 175 of 679) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocStream.h 114 ArrayRef<char> getBytes(const Entry &E) const {
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/apple/
QuicktimeTextSampleEntry.java 231 byteBuffer.put(fontName.getBytes());
  /external/proguard/src/proguard/classfile/constant/
Utf8Constant.java 96 public byte[] getBytes()
186 // of String.getBytes("UTF-8") has a bug, at least up to JRE 1.4.2.
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
Fs.java 196 @Override public byte[] getBytes() throws IOException {
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothConnection.java 126 this.write(out.getBytes());
  /frameworks/base/core/java/android/bluetooth/le/
ScanRecord.java 148 public byte[] getBytes() {
ScanResult.java 162 dest.writeByteArray(mScanRecord.getBytes());
  /frameworks/base/core/java/android/net/nsd/
NsdServiceInfo.java 240 setAttribute(key, value == null ? (byte []) null : value.getBytes("UTF-8"));
292 System.arraycopy(key.getBytes(StandardCharsets.US_ASCII), 0, txtRecord, ptr,
  /frameworks/base/core/java/android/security/keymaster/
KeymasterArguments.java 266 public byte[] getBytes(int tag, byte[] defaultValue) {
  /frameworks/base/core/java/android/util/jar/
StrictJarManifest.java 293 os.write(nameString.getBytes(StandardCharsets.US_ASCII));
  /frameworks/base/lowpan/java/android/net/lowpan/
LowpanIdentity.java 78 mIdentity.mRawName = mIdentity.mName.getBytes(StandardCharsets.UTF_8);
82 setRawName(name.getBytes(StandardCharsets.UTF_8));
94 Arrays.equals(nameCheck.getBytes(StandardCharsets.UTF_8), name);
  /frameworks/base/services/core/java/com/android/server/
CertBlacklister.java 91 out.write(blacklist.getBytes());
  /frameworks/base/services/core/java/com/android/server/wm/
WindowTracing.java 147 os.write(proto.getBytes());
  /frameworks/base/services/tests/servicestests/src/com/android/server/locksettings/recoverablekeystore/
SecureBoxTest.java 66 private static final byte[] VAULT_CHALLENGE = getBytes("Not a real vault challenge");
67 private static final byte[] THM_KF_HASH = getBytes("12345678901234567890123456789012");
91 private static final byte[] KEY_CLAIMANT = getBytes("asdfasdfasdfasdf");
120 private static final byte[] TEST_SHARED_SECRET = getBytes("TEST_SHARED_SECRET");
121 private static final byte[] TEST_HEADER = getBytes("TEST_HEADER");
122 private static final byte[] TEST_PAYLOAD = getBytes("TEST_PAYLOAD");
175 SecureBox.concat(getBytes("V1 KF_claim"), VAULT_PARAMS, VAULT_CHALLENGE),
185 SecureBox.concat(getBytes("V1 THM_encrypted_recovery_key"), VAULT_PARAMS),
355 private static byte[] getBytes(String str) {
356 return str.getBytes(StandardCharsets.UTF_8)
    [all...]
  /frameworks/base/telephony/java/android/telephony/mbms/
DownloadRequest.java 373 digest.update(sourceUri.toString().getBytes(StandardCharsets.UTF_8));
374 digest.update(destinationUri.toString().getBytes(StandardCharsets.UTF_8));
376 digest.update(serializedResultIntentForApp.getBytes(StandardCharsets.UTF_8));
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
SsidSetStoreDataTest.java 60 TEST_SSID_SET_XML_STRING.getBytes(StandardCharsets.UTF_8);
200 deserializeData(ssidSet.getBytes(StandardCharsets.UTF_8), false /* shared */);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
ByteArrayOutputStreamTest.java 81 * java.io.ByteArrayOutputStream(); bos.write (fileString.getBytes(), 0,
84 * (fileString.getBytes(), 0, 100); bos.toByteArray(); fail("Wrote to
94 bos.write(fileString.getBytes(), 0, 100);
104 bos.write(fileString.getBytes(), 0, 100);
115 byte[] sbytes = fileString.getBytes();
117 bos.write(fileString.getBytes(), 0, fileString.length());
130 bos.write(fileString.getBytes("UTF-8"), 0, fileString.length());
135 bos.write(fileString.getBytes("UTF-8"), 0, fileString.length());
145 bos.write(fileString.getBytes(), 0, fileString.length());
156 bos.write(fileString.getBytes(), 0, fileString.length())
    [all...]
DataOutputStreamTest.java 61 os.write(fileString.getBytes(), 0, 150);
74 os.write(fileString.getBytes(), 0, 150);
124 os.write(fileString.getBytes());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ProcessManagerTest.java 41 out.write(greeting.getBytes());
  /libcore/luni/src/test/java/libcore/java/io/
OldDataInputStreamTest.java 63 os.write(fileString.getBytes());
94 os.write(fileString.getBytes());
124 os.write(fileString.getBytes());
153 os.write(fileString.getBytes());
182 os.write(fileString.getBytes());
OldDataOutputStreamTest.java 74 os.write(testString.getBytes(), 5, testLength - 7);
OldFilterInputStreamTest.java 297 fos.write(INPUT.getBytes());
OldPipedOutputStreamTest.java 161 out.write(testString.getBytes(), 0, 10);
172 out.write(testString.getBytes(), 0, 5);
181 out.write(testString.getBytes(), -1, 10);
188 out.write(testString.getBytes(), 0, -1);
195 out.write(testString.getBytes(), 5, testString.length());
206 out.write(testString.getBytes(), 0, testString.length());
216 out.write(testString.getBytes(), 0, 5);
  /libcore/luni/src/test/java/libcore/java/nio/file/
FilesSetup.java 149 os.write(data.getBytes());
  /libcore/ojluni/src/main/java/java/sql/
CallableStatement.java 316 byte[] getBytes(int parameterIndex) throws SQLException;
    [all...]

Completed in 1528 milliseconds

1 2 3 4 5 67 8 91011>>