/frameworks/av/media/libmediaplayerservice/nuplayer/ |
NuPlayerDecoder.h | 28 struct NuPlayer::Decoder : public DecoderBase { 29 Decoder(const sp<AMessage> ¬ify, 45 virtual ~Decoder(); 145 DISALLOW_EVIL_CONSTRUCTORS(Decoder);
|
NuPlayerDecoder.cpp | 59 NuPlayer::Decoder::Decoder( 93 mComponentName("decoder") { 100 NuPlayer::Decoder::~Decoder() { 109 sp<AMessage> NuPlayer::Decoder::getStats() const { 116 status_t NuPlayer::Decoder::setVideoSurface(const sp<Surface> &surface) { 132 void NuPlayer::Decoder::onMessageReceived(const sp<AMessage> &msg) { 189 ALOGE("Decoder (%s) reported error : 0x%x", 279 void NuPlayer::Decoder::onConfigure(const sp<AMessage> &format) [all...] |
/external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/ |
Decoder.java | 19 * A Decoder is a helper class for deserializing a mojo struct. It enables deserialization of basic 22 public class Decoder { 125 public Decoder(Message message) { 129 private Decoder(Message message, Validator validator, int baseOffset) { 168 * @returns a decoder suitable to decode an union defined as the root object of a message. 170 public Decoder decoderForSerializedUnion() { 306 * Deserializes a pointer at the given offset. Returns a Decoder suitable to decode the content 309 public Decoder readPointer(int offset, boolean nullable) { 329 Decoder d = readPointer(offset, BindingsHelper.isArrayNullable(arrayNullability)); 353 Decoder d = readPointer(offset, BindingsHelper.isArrayNullable(arrayNullability)) [all...] |
/external/capstone/arch/PowerPC/ |
PPCDisassembler.c | 163 const void *Decoder) 170 const void *Decoder) 177 const void *Decoder) 184 const void *Decoder) 191 const void *Decoder) 198 const void *Decoder) 205 const void *Decoder) 212 const void *Decoder) 219 const void *Decoder) 226 const void *Decoder) [all...] |
/external/vixl/src/aarch64/ |
debugger-aarch64.h | 53 explicit Debugger(Decoder* decoder, FILE* stream = stdout); 98 Decoder* printer_;
|
decoder-aarch64.cc | 30 #include "decoder-aarch64.h" 35 void Decoder::DecodeInstruction(const Instruction* instr) { 129 void Decoder::AppendVisitor(DecoderVisitor* new_visitor) { 134 void Decoder::PrependVisitor(DecoderVisitor* new_visitor) { 139 void Decoder::InsertVisitorBefore(DecoderVisitor* new_visitor, 155 void Decoder::InsertVisitorAfter(DecoderVisitor* new_visitor, 172 void Decoder::RemoveVisitor(DecoderVisitor* visitor) { 177 void Decoder::DecodePCRelAddressing(const Instruction* instr) { 186 void Decoder::DecodeBranchSystemException(const Instruction* instr) { 287 void Decoder::DecodeLoadStore(const Instruction* instr) [all...] |
/external/webrtc/webrtc/test/ |
encoder_settings.cc | 56 VideoReceiveStream::Decoder CreateMatchingDecoder( 58 VideoReceiveStream::Decoder decoder; local 59 decoder.payload_type = encoder_settings.payload_type; 60 decoder.payload_name = encoder_settings.payload_name; 62 decoder.decoder = VideoDecoder::Create(VideoDecoder::kVp8); 64 decoder.decoder = VideoDecoder::Create(VideoDecoder::kVp9); 66 decoder.decoder = new FakeDecoder() [all...] |
/external/webrtc/webrtc/ |
video_receive_stream.h | 33 struct Decoder { 36 // The actual decoder instance. 37 VideoDecoder* decoder = nullptr; member in struct:webrtc::VideoReceiveStream::Decoder 39 // Received RTP packets with this payload type will be sent to this decoder 53 // Decoder stats. 84 std::vector<Decoder> decoders;
|
/frameworks/av/media/libmediaplayer2/nuplayer2/ |
NuPlayer2Decoder.cpp | 59 NuPlayer2::Decoder::Decoder( 93 mComponentName("decoder") { 97 NuPlayer2::Decoder::~Decoder() { 106 sp<AMessage> NuPlayer2::Decoder::getStats() const { 113 status_t NuPlayer2::Decoder::setVideoSurface(const sp<ANativeWindowWrapper> &nww) { 130 void NuPlayer2::Decoder::onMessageReceived(const sp<AMessage> &msg) { 187 ALOGE("Decoder (%s) reported error : 0x%x", 287 void NuPlayer2::Decoder::onConfigure(const sp<AMessage> &format) [all...] |
/frameworks/base/core/java/android/net/metrics/ |
IpManagerEvent.java | 91 Decoder.constants.get(eventType), durationMs); 94 final static class Decoder {
|
IpReachabilityEvent.java | 95 String eventName = Decoder.constants.get(hi); 99 final static class Decoder {
|
/external/v8/src/ppc/ |
disasm-ppc.cc | 46 // Decoder decodes and disassembles instructions into an output buffer. 49 class Decoder { 51 Decoder(const disasm::NameConverter& converter, Vector<char> out_buffer) 56 ~Decoder() {} 91 DISALLOW_COPY_AND_ASSIGN(Decoder); 95 // Support for assertions in the Decoder formatting functions. 101 void Decoder::PrintChar(const char ch) { out_buffer_[out_buffer_pos_++] = ch; } 105 void Decoder::Print(const char* str) { 116 void Decoder::PrintRegister(int reg) { 122 void Decoder::PrintDRegister(int reg) [all...] |
/external/v8/src/arm64/ |
decoder-arm64.h | 17 // List macro containing all visitors needed by the decoder class. 83 // Register a new visitor class with the decoder. 109 // stored by the decoder. 123 class Decoder : public V { 125 Decoder() {} 126 virtual ~Decoder() {} 128 // Top-level instruction decoder function. Decodes an instruction and calls 129 // the visitor functions registered with the Decoder class.
|
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/http2/hpack/ |
hpack.go | 77 // A Decoder is the decoding context for incremental processing of 79 type Decoder struct { 97 // NewDecoder returns a new decoder with the provided maximum dynamic 100 func NewDecoder(maxDynamicTableSize uint32, emitFunc func(f HeaderField)) *Decoder { 101 d := &Decoder{ 111 // ErrStringLength is returned by Decoder.Write when the max string length 112 // (as configured by Decoder.SetMaxStringLength) would be violated. 119 func (d *Decoder) SetMaxStringLength(n int) { 126 func (d *Decoder) SetEmitFunc(emitFunc func(f HeaderField)) { 134 // while still decoding and keeping in-sync with decoder state, bu [all...] |
/prebuilts/go/linux-x86/src/vendor/golang_org/x/net/http2/hpack/ |
hpack.go | 77 // A Decoder is the decoding context for incremental processing of 79 type Decoder struct { 97 // NewDecoder returns a new decoder with the provided maximum dynamic 100 func NewDecoder(maxDynamicTableSize uint32, emitFunc func(f HeaderField)) *Decoder { 101 d := &Decoder{ 111 // ErrStringLength is returned by Decoder.Write when the max string length 112 // (as configured by Decoder.SetMaxStringLength) would be violated. 119 func (d *Decoder) SetMaxStringLength(n int) { 126 func (d *Decoder) SetEmitFunc(emitFunc func(f HeaderField)) { 134 // while still decoding and keeping in-sync with decoder state, bu [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
ImageReaderDecoderTest.java | 66 * test. For decoder test, hw and sw decoders are tested, 204 class Decoder { 219 Decoder(String name, MediaAssets assets, CodecCapabilities caps) { 253 MediaCodec decoder = null; local 288 // Create decoder 289 decoder = MediaCodec.createByCodecName(mName); 290 assertNotNull("couldn't create decoder" + mName, decoder); 293 decoder, extractor, mediaFormat, 296 decoder.stop() [all...] |
/prebuilts/go/darwin-x86/src/encoding/gob/ |
decoder.go | 20 // A Decoder manages the receipt of type and data information read from the 23 // The Decoder does only basic sanity checking on decoded input sizes, 26 type Decoder struct { 38 // NewDecoder returns a new decoder that reads from the io.Reader. 41 func NewDecoder(r io.Reader) *Decoder { 42 dec := new(Decoder) 57 func (dec *Decoder) recvType(id typeId) { 78 func (dec *Decoder) recvMessage() bool { 94 func (dec *Decoder) readMessage(nbytes int) { 97 panic("non-empty decoder buffer" [all...] |
/prebuilts/go/linux-x86/src/encoding/gob/ |
decoder.go | 20 // A Decoder manages the receipt of type and data information read from the 23 // The Decoder does only basic sanity checking on decoded input sizes, 26 type Decoder struct { 38 // NewDecoder returns a new decoder that reads from the io.Reader. 41 func NewDecoder(r io.Reader) *Decoder { 42 dec := new(Decoder) 57 func (dec *Decoder) recvType(id typeId) { 78 func (dec *Decoder) recvMessage() bool { 94 func (dec *Decoder) readMessage(nbytes int) { 97 panic("non-empty decoder buffer" [all...] |
/art/simulator/ |
code_simulator_arm64.cc | 42 decoder_ = new Decoder();
|
/external/brotli/java/org/brotli/wrapper/dec/ |
BrotliDecoderChannel.java | 15 * ReadableByteChannel that wraps native brotli decoder. 17 public class BrotliDecoderChannel extends Decoder implements ReadableByteChannel { 18 /** The default internal buffer size used by the decoder. */
|
BrotliInputStream.java | 14 * InputStream that wraps native brotli decoder. 17 /** The default internal buffer size used by the decoder. */ 20 private final Decoder decoder; field in class:BrotliInputStream 30 this.decoder = new Decoder(Channels.newChannel(source), bufferSize); 39 decoder.close(); 44 return (decoder.buffer != null) ? decoder.buffer.remaining() : 0; 49 if (decoder.closed) [all...] |
/external/vixl/examples/aarch64/ |
add3-double.cc | 49 Decoder decoder; local 50 Simulator simulator(&decoder);
|
debugger.cc | 54 Decoder decoder; local 55 Debugger debugger(&decoder);
|
factorial.cc | 58 Decoder decoder; local 59 Simulator simulator(&decoder);
|
/external/libvpx/libvpx/test/ |
tile_independence_test.cc | 56 void UpdateMD5(::libvpx_test::Decoder *dec, const vpx_codec_cx_pkt_t *pkt, 74 ::libvpx_test::Decoder *fw_dec_, *inv_dec_;
|