OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:byteoutput
(Results
1 - 25
of
103
) sorted by null
1
2
3
4
5
/external/protobuf/java/core/src/main/java/com/google/protobuf/
UnsafeByteOperations.java
66
* Writes the given {@link ByteString} to the provided {@link
ByteOutput
}. Calling this method may
67
* result in multiple operations on the target {@link
ByteOutput
}
71
*
ByteOutput
} in order to avoid additional copying overhead. It would be possible for a malicious
72
* {@link
ByteOutput
} to corrupt the {@link ByteString}. Use with caution!
74
* <p> NOTE: The {@link
ByteOutput
} <strong>MUST NOT</strong> modify the provided buffers. Doing
81
public static void unsafeWriteTo(ByteString bytes,
ByteOutput
output) throws IOException {
ByteOutput.java
50
public abstract class
ByteOutput
{
60
* Writes a sequence of bytes. The {@link
ByteOutput
} must copy {@code value} if it will
75
* Writes a sequence of bytes. The {@link
ByteOutput
} is free to retain a reference to the value
90
* Writes a sequence of bytes. The {@link
ByteOutput
} must copy {@code value} if it will
104
* Writes a sequence of bytes. The {@link
ByteOutput
} is free to retain a reference to the value
ByteString.java
669
* Writes this {@link ByteString} to the provided {@link
ByteOutput
}. Calling
670
* this method may result in multiple operations on the target {@link
ByteOutput
}.
673
*
ByteOutput
} in order to avoid additional copying overhead. It would be possible for a malicious
674
* {@link
ByteOutput
} to corrupt the {@link ByteString}. Use with caution!
676
* @param
byteOutput
the output target to receive the bytes
678
* @see UnsafeByteOperations#unsafeWriteTo(ByteString,
ByteOutput
)
680
abstract void writeTo(
ByteOutput
byteOutput
) throws IOException;
[
all
...]
NioByteString.java
143
void writeTo(
ByteOutput
output) throws IOException {
CodedOutputStream.java
60
public abstract class CodedOutputStream extends
ByteOutput
{
165
* Create a new {@code CodedOutputStream} that writes to the provided {@link
ByteOutput
}.
167
* <p> NOTE: The {@link
ByteOutput
} <strong>MUST NOT</strong> modify the provided buffers. Doing
170
* @param
byteOutput
the output target for encoded bytes.
175
static CodedOutputStream newInstance(
ByteOutput
byteOutput
, int bufferSize) {
180
return new ByteOutputEncoder(
byteOutput
, bufferSize);
[
all
...]
/cts/common/util/src/com/android/compatibility/common/util/
ResultUploader.java
62
ByteArrayOutputStream
byteOutput
= new ByteArrayOutputStream(RESULT_XML_BYTES);
63
GZIPOutputStream gzipOutput = new GZIPOutputStream(
byteOutput
);
70
return
byteOutput
.toByteArray();
MultipartForm.java
130
ByteArrayOutputStream
byteOutput
= new ByteArrayOutputStream();
131
PrintWriter writer = new PrintWriter(new OutputStreamWriter(
byteOutput
));
141
byteOutput
.write(mData);
147
return
byteOutput
.toByteArray();
/dalvik/dx/src/com/android/dex/util/
ByteOutput.java
22
public interface
ByteOutput
{
/dalvik/dx/src/com/android/dex/
Leb128.java
20
import com.android.dex.util.
ByteOutput
;
104
public static void writeUnsignedLeb128(
ByteOutput
out, int value) {
120
public static void writeSignedLeb128(
ByteOutput
out, int value) {
EncodedValueCodec.java
20
import com.android.dex.util.
ByteOutput
;
32
public static void writeSignedIntegralValue(
ByteOutput
out, int type, long value) {
64
public static void writeUnsignedIntegralValue(
ByteOutput
out, int type, long value) {
91
public static void writeRightZeroExtendedValue(
ByteOutput
out, int type, long value) {
/external/dexmaker/lib/
libcore-dex-2-sources.jar
libcore-dex-2.jar
/prebuilts/tools/common/m2/repository/com/jakewharton/android/repackaged/libcore-dex/2/
libcore-dex-2-sources.jar
libcore-dex-2.jar
/dalvik/dx/src/com/android/dx/util/
Output.java
19
import com.android.dex.util.
ByteOutput
;
26
public interface Output extends
ByteOutput
{
ByteArrayAnnotatedOutput.java
19
import com.android.dex.util.
ByteOutput
;
34
implements AnnotatedOutput,
ByteOutput
{
/external/guava/guava/src/com/google/common/io/
GwtWorkarounds.java
143
interface
ByteOutput
{
150
* Views a {@code
ByteOutput
} as an {@code OutputStream}.
153
static OutputStream asOutputStream(final
ByteOutput
output) {
BaseEncoding.java
38
import com.google.common.io.GwtWorkarounds.
ByteOutput
;
169
ByteOutput
byteOutput
= encodingStream(result);
172
byteOutput
.write(bytes[off + i]);
174
byteOutput
.close();
285
abstract
ByteOutput
encodingStream(CharOutput charOutput);
592
ByteOutput
encodingStream(final CharOutput out) {
594
return new
ByteOutput
() {
836
ByteOutput
encodingStream(final CharOutput output) {
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
NativeLeakCollector.java
104
ByteArrayInputStreamSource
byteOutput
=
106
mTestLogger.testLog(mLogFilename, LogDataType.TEXT,
byteOutput
);
107
StreamUtil.cancel(
byteOutput
);
/external/guava/guava-gwt/src-super/com/google/common/io/super/com/google/common/io/
BaseEncoding.java
34
import com.google.common.io.GwtWorkarounds.
ByteOutput
;
161
ByteOutput
byteOutput
= encodingStream(result);
164
byteOutput
.write(bytes[off + i]);
166
byteOutput
.close();
228
abstract
ByteOutput
encodingStream(CharOutput charOutput);
535
ByteOutput
encodingStream(final CharOutput out) {
537
return new
ByteOutput
() {
779
ByteOutput
encodingStream(final CharOutput output) {
GwtWorkarounds.java
77
interface
ByteOutput
{
/dalvik/dx/src/com/android/dx/merge/
IndexMap.java
20
import com.android.dex.util.
ByteOutput
;
252
private final
ByteOutput
out;
254
public EncodedValueTransformer(
ByteOutput
out) {
/external/protobuf/
build.gradle
40
include 'com/google/protobuf/
ByteOutput
.java'
CHANGES.txt
30
- Introduction of the `
ByteOutput
` interface. This is similar to
33
- `ByteString` now supports writing to a `
ByteOutput
`, which will directly
35
to the `
ByteOutput
` without copying.
36
- `CodedOutputStream` now supports writing to a `
ByteOutput
`. `ByteString`
38
(lazily) written to the `
ByteOutput
` directly.
41
`
ByteOutput
` that chains together the chunks received from
[
all
...]
/external/protobuf/util/
CHANGES.txt
30
- Introduction of the `
ByteOutput
` interface. This is similar to
33
- `ByteString` now supports writing to a `
ByteOutput
`, which will directly
35
to the `
ByteOutput
` without copying.
36
- `CodedOutputStream` now supports writing to a `
ByteOutput
`. `ByteString`
38
(lazily) written to the `
ByteOutput
` directly.
41
`
ByteOutput
` that chains together the chunks received from
[
all
...]
Completed in 608 milliseconds
1
2
3
4
5