/hardware/google/gfxstream/guest/magma/magma_enc/ |
D | magma_entry.cpp | 16 void magma_connection_release_context(magma_connection_t connection, uint32_t context_id); 26 …magma_status_t magma_connection_execute_command(magma_connection_t connection, uint32_t context_id… 27 …nnection_execute_command_fudge(magma_connection_t connection, uint32_t context_id, void* descripto… 28 …ion_execute_immediate_commands(magma_connection_t connection, uint32_t context_id, uint64_t comman… 29 …ecute_immediate_commands_fudge(magma_connection_t connection, uint32_t context_id, uint64_t comman… 114 void magma_connection_release_context(magma_connection_t connection, uint32_t context_id) in magma_connection_release_context() argument 117 ctx->magma_connection_release_context(ctx, connection, context_id); in magma_connection_release_context() 174 magma_status_t magma_connection_execute_command(magma_connection_t connection, uint32_t context_id,… in magma_connection_execute_command() argument 177 return ctx->magma_connection_execute_command(ctx, connection, context_id, descriptor); in magma_connection_execute_command() 180 …nnection_execute_command_fudge(magma_connection_t connection, uint32_t context_id, void* descripto… in magma_connection_execute_command_fudge() argument [all …]
|
D | magma_enc.cpp | 375 …gma_connection_release_context_enc(void *self , magma_connection_t connection, uint32_t context_id) in magma_connection_release_context_enc() argument 377 …BUG_LOG("magma_connection_release_context(connection:%lu, context_id:%u)", connection, context_id); in magma_connection_release_context_enc() 396 memcpy(ptr, &context_id, 4); ptr += 4; in magma_connection_release_context_enc() 792 …ecute_command_enc(void *self , magma_connection_t connection, uint32_t context_id, magma_command_d… in magma_connection_execute_command_enc() argument 794 …xecute_command(connection:%lu, context_id:%u, descriptor:%p)", connection, context_id, descriptor); in magma_connection_execute_command_enc() 814 memcpy(ptr, &context_id, 4); ptr += 4; in magma_connection_execute_command_enc() 838 …command_fudge_enc(void *self , magma_connection_t connection, uint32_t context_id, void* descripto… in magma_connection_execute_command_fudge_enc() argument 840 …:%lu, context_id:%u, descriptor:%p, descriptor_size:%lu)", connection, context_id, descriptor, des… in magma_connection_execute_command_fudge_enc() 860 memcpy(ptr, &context_id, 4); ptr += 4; in magma_connection_execute_command_fudge_enc() 885 …iate_commands_enc(void *self , magma_connection_t connection, uint32_t context_id, uint64_t comman… in magma_connection_execute_immediate_commands_enc() argument [all …]
|
/hardware/google/gfxstream/host/ |
D | RenderThreadInfoMagma.cpp | 21 RenderThreadInfoMagma::RenderThreadInfoMagma(uint32_t context_id) { in RenderThreadInfoMagma() argument 27 mMagmaDec = gfxstream::magma::Decoder::create(context_id); in RenderThreadInfoMagma()
|
D | RenderThreadInfoMagma.h | 23 RenderThreadInfoMagma(uint32_t context_id);
|
/hardware/google/gfxstream/host/magma/ |
D | Decoder.h | 27 static std::unique_ptr<Decoder> create(uint32_t context_id); 43 … virtual void magma_connection_release_context(magma_connection_t connection, uint32_t context_id); 53 …gma_connection_execute_command(magma_connection_t connection, uint32_t context_id, magma_command_d… 54 …ion_execute_immediate_commands(magma_connection_t connection, uint32_t context_id, uint64_t comman… 90 uint32_t context_id, 98 magma_connection_t connection, uint32_t context_id, uint64_t command_count,
|
D | Decoder.cpp | 26 std::unique_ptr<Decoder> Decoder::create(uint32_t context_id) { in create() argument 28 return IntelDrmDecoder::create(context_id); in create() 131 void Decoder::magma_connection_release_context(magma_connection_t connection, uint32_t context_id) { in magma_connection_release_context() argument 197 uint32_t context_id, in magma_connection_execute_command() argument 204 magma_connection_t connection, uint32_t context_id, uint64_t command_count, in magma_connection_execute_immediate_commands() argument 382 uint32_t context_id, in magma_connection_execute_command_fudge() argument 390 magma_connection_t connection, uint32_t context_id, uint64_t command_count, in magma_connection_execute_immediate_commands_fudge() argument
|
D | DrmBuffer.cpp | 55 std::unique_ptr<DrmBuffer> DrmBuffer::create(DrmDevice& device, uint32_t context_id, in create() argument 67 buffer->mContextId = context_id; in create()
|
D | IntelDrmDecoder.h | 28 static std::unique_ptr<IntelDrmDecoder> create(uint32_t context_id); 49 …void magma_connection_release_context(magma_connection_t connection, uint32_t context_id) override;
|
D | DrmBuffer.h | 40 static std::unique_ptr<DrmBuffer> create(DrmDevice& device, uint32_t context_id, uint64_t size);
|
D | IntelDrmDecoder.cpp | 35 std::unique_ptr<IntelDrmDecoder> IntelDrmDecoder::create(uint32_t context_id) { in create() argument 37 decoder->mContextId = context_id; in create() 38 INFO("IntelDrmDecoder created for context %" PRIu32, context_id); in create() 460 uint32_t context_id) { in magma_connection_release_context() argument
|
/hardware/google/gfxstream/codegen/magma/ |
D | magma.in | 9 MAGMA(void, magma_connection_release_context, magma_connection_t connection, uint32_t context_id) 19 …ma_connection_execute_command, magma_connection_t connection, uint32_t context_id, magma_command_d… 20 …nection_execute_command_fudge, magma_connection_t connection, uint32_t context_id, void* descripto… 21 …on_execute_immediate_commands, magma_connection_t connection, uint32_t context_id, uint64_t comman… 22 …cute_immediate_commands_fudge, magma_connection_t connection, uint32_t context_id, uint64_t comman…
|
/hardware/google/gfxstream/guest/magma/ |
D | magma_enc_util.h | 24 void pack_command_descriptor(void* ptr, magma_connection_t connection, uint32_t context_id,
|
D | magma_enc_util.cpp | 30 void pack_command_descriptor(void* void_ptr, magma_connection_t connection, uint32_t context_id, in pack_command_descriptor() argument
|
/hardware/google/gfxstream/third-party/fuchsia/magma/include/lib/magma/ |
D | magma.h | 119 uint32_t context_id); 249 uint32_t context_id, 262 uint32_t context_id,
|