Searched defs:getBytes (Results 1 - 25 of 54) sorted by relevance

123

/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/crypto/
H A DByteArrayGenerator.java21 public byte[] getBytes(int numBytes) throws IOException, GeneralSecurityException { method in class:ByteArrayGenerator
/external/apache-http/src/org/apache/http/util/
H A DEncodingUtils.java110 public static byte[] getBytes(final String data, final String charset) { method in class:EncodingUtils
121 return data.getBytes(charset);
123 return data.getBytes();
140 return data.getBytes(HTTP.US_ASCII);
/external/glide/library/src/main/java/com/bumptech/glide/util/
H A DByteArrayPool.java31 public byte[] getBytes() { method in class:ByteArrayPool
/external/chromium_org/components/cronet/android/java/src/org/chromium/net/
H A DChunkedWritableByteChannel.java95 public byte[] getBytes() { method in class:ChunkedWritableByteChannel
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dmalloc-tree78 def getBytes(self): member in class:Node
135 return node.getBytes();
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dsortkey.h255 uint8_t *getBytes() { function in class:CollationKey
258 const uint8_t *getBytes() const { function in class:CollationKey
330 return getBytes();
/external/icu/icu4c/source/i18n/unicode/
H A Dsortkey.h256 uint8_t *getBytes() { function in class:CollationKey
259 const uint8_t *getBytes() const { function in class:CollationKey
331 return getBytes();
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/
H A DSinkTester.java49 public abstract byte[] getBytes() throws Exception; method in class:SinkTester
99 assertArrayEquals(expected, getBytes());
112 assertArrayEquals(expected, getBytes());
124 assertArrayEquals(expected, getBytes());
146 assertArrayEquals(expected, getBytes());
177 assertArrayEquals(expected, getBytes());
188 assertArrayEquals(expected, getBytes());
204 assertArrayEquals(expectedBytes, getBytes());
H A DWrapperTester.java91 public byte[] getBytes() throws Exception { method in class:WrapperTester.WrapperSinkTester
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DKeyUsage.java88 public byte[] getBytes() method in class:KeyUsage
90 return bitString.getBytes();
100 byte[] data = bitString.getBytes();
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/crypto/
H A DCipherFactoryTest.java29 public byte[] getBytes(int numBytes) throws IOException, GeneralSecurityException { method in class:CipherFactoryTest.DeterministicParameterGenerator
30 return getBytes(numBytes, (byte) 0);
39 public byte[] getBytes(int numBytes, byte startByte) { method in class:CipherFactoryTest.DeterministicParameterGenerator
85 byte[] sameIv = mNumberProvider.getBytes(CipherFactory.NUM_BYTES, (byte) 100);
89 byte[] sameKey = mNumberProvider.getBytes(CipherFactory.NUM_BYTES, (byte) 200);
111 byte[] aIv = mNumberProvider.getBytes(CipherFactory.NUM_BYTES, (byte) 50);
112 byte[] aKey = mNumberProvider.getBytes(CipherFactory.NUM_BYTES, (byte) 100);
120 byte[] bIv = mNumberProvider.getBytes(CipherFactory.NUM_BYTES, (byte) 150);
121 byte[] bKey = mNumberProvider.getBytes(CipherFactory.NUM_BYTES, (byte) 200);
140 byte[] iv = mNumberProvider.getBytes(CipherFactor
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
H A DAbstractTransformTask.java144 byte bytes[] = getBytes(zip);
241 private byte[] getBytes(ZipInputStream zip) throws IOException { method in class:AbstractTransformTask
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERBitString.java72 static protected byte[] getBytes(int bitString) method in class:DERBitString
164 this.data = getBytes(value);
176 public byte[] getBytes() method in class:DERBitString
216 byte[] bytes = new byte[getBytes().length + 1];
219 System.arraycopy(getBytes(), 0, bytes, 1, bytes.length - 1);
/external/deqp/executor/
H A DxeBatchResult.hpp59 const deUint8* getBytes (void) const { return !m_data.empty() ? &m_data[0] : DE_NULL; } function in class:xe::InfoLog
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstString.java346 public ByteArray getBytes() { method in class:CstString
/external/proguard/src/proguard/classfile/constant/
H A DUtf8Constant.java96 public byte[] getBytes() method in class:Utf8Constant
186 // of String.getBytes("UTF-8") has a bug, at least up to JRE 1.4.2.
/external/arduino/hardware/arduino/cores/arduino/
H A DWString.cpp422 void String::getBytes(unsigned char *buf, unsigned int bufsize) function in class:String
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArray.java206 public void getBytes(byte[] out, int offset) { method in class:ByteArray
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dpkgitems.cpp73 const uint8_t *getBytes() const { function in class:NativeItem
415 const int32_t *poolIndexes=(const int32_t *)nativePool.getBytes()+1;
596 ures_enumDependencies(pItem->name, nrb.getDataInfo(), nrb.getBytes(), nrb.getLength(), check, context, this, &errorCode);
/external/deqp/modules/glshared/
H A DglsMemoryStressCase.cpp445 deUint32 getBytes (void) const { return m_bytesRequired; } function in class:deqp::gls::MemObjectAllocator
885 log << TestLog::Message << "Got error when allocation object count: " << allocator.getObjectCount() << " bytes: " << allocator.getBytes() << TestLog::EndMessage;
/external/icu/icu4c/source/tools/toolutil/
H A Dpkgitems.cpp73 const uint8_t *getBytes() const { function in class:NativeItem
415 const int32_t *poolIndexes=(const int32_t *)nativePool.getBytes()+1;
596 ures_enumDependencies(pItem->name, nrb.getDataInfo(), nrb.getBytes(), nrb.getLength(), check, context, this, &errorCode);
/external/smack/src/org/jivesoftware/smackx/packet/
H A DVCard.java332 bytes = getBytes(avatarURL);
437 public static byte[] getBytes(URL url) throws IOException { method in class:VCard
/external/smack/asmack-master/lib/
H A Djstun.jarMETA-INF/ META-INF/MANIFEST.MF de/ de/javawi/ de/javawi/jstun/ de/javawi/jstun/attribute/ ...
/external/fonttools/Lib/fontTools/misc/
H A DpsCharStrings.py337 def getBytes(self, index, nBytes): member in class:T2CharString
580 hintMaskBytes, index = self.callingStack[-1].getBytes(index, self.hintMaskBytes)
/external/fonttools/Tools/fontTools/misc/
H A DpsCharStrings.py337 def getBytes(self, index, nBytes): member in class:T2CharString
580 hintMaskBytes, index = self.callingStack[-1].getBytes(index, self.hintMaskBytes)

Completed in 7670 milliseconds

123