OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:encodeBytes
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebKit2/WebProcess/WebPage/
EncoderAdapter.cpp
44
void EncoderAdapter::
encodeBytes
(const uint8_t* bytes, size_t size)
46
m_encoder->
encodeBytes
(bytes, size);
/external/webkit/Source/WebKit2/Platform/CoreIPC/
ArgumentEncoder.cpp
88
void ArgumentEncoder::
encodeBytes
(const uint8_t* bytes, size_t size)
/external/smack/src/org/jivesoftware/smack/util/
Base64.java
529
public static String
encodeBytes
( byte[] source )
531
return
encodeBytes
( source, 0, source.length, NO_OPTIONS );
532
} // end
encodeBytes
545
* Example: <code>
encodeBytes
( myData, Base64.GZIP )</code> or
547
* Example: <code>
encodeBytes
( myData, Base64.GZIP | Base64.DONT_BREAK_LINES )</code>
556
public static String
encodeBytes
( byte[] source, int options )
558
return
encodeBytes
( source, 0, source.length, options );
559
} // end
encodeBytes
571
public static String
encodeBytes
( byte[] source, int off, int len )
573
return
encodeBytes
( source, off, len, NO_OPTIONS );
[
all
...]
Completed in 1723 milliseconds