Home
last modified time | relevance | path

Searched refs:pipe (Results 1 – 25 of 2299) sorted by relevance

12345678910>>...92

/external/mesa3d/src/gallium/auxiliary/driver_ddebug/
Ddd_context.c52 struct pipe_context *pipe = dd_context(_pipe)->pipe; in dd_context_create_query() local
55 query = pipe->create_query(pipe, query_type, index); in dd_context_create_query()
65 pipe->destroy_query(pipe, query); in dd_context_create_query()
77 struct pipe_context *pipe = dd_context(_pipe)->pipe; in dd_context_create_batch_query() local
80 query = pipe->create_batch_query(pipe, num_queries, query_types); in dd_context_create_batch_query()
91 pipe->destroy_query(pipe, query); in dd_context_create_batch_query()
103 struct pipe_context *pipe = dd_context(_pipe)->pipe; in dd_context_destroy_query() local
105 pipe->destroy_query(pipe, dd_query_unwrap(query)); in dd_context_destroy_query()
113 struct pipe_context *pipe = dctx->pipe; in dd_context_begin_query() local
115 return pipe->begin_query(pipe, dd_query_unwrap(query)); in dd_context_begin_query()
[all …]
/external/mesa3d/src/gallium/auxiliary/driver_trace/
Dtr_context.c95 struct pipe_context *pipe = tr_ctx->pipe; in trace_context_draw_vbo() local
99 trace_dump_arg(ptr, pipe); in trace_context_draw_vbo()
104 pipe->draw_vbo(pipe, info); in trace_context_draw_vbo()
116 struct pipe_context *pipe = tr_ctx->pipe; in trace_context_create_query() local
121 trace_dump_arg(ptr, pipe); in trace_context_create_query()
125 query = pipe->create_query(pipe, query_type, index); in trace_context_create_query()
139 pipe->destroy_query(pipe, query); in trace_context_create_query()
153 struct pipe_context *pipe = tr_ctx->pipe; in trace_context_destroy_query() local
161 trace_dump_arg(ptr, pipe); in trace_context_destroy_query()
164 pipe->destroy_query(pipe, query); in trace_context_destroy_query()
[all …]
/external/mesa3d/src/gallium/frontends/clover/core/
Ddevice.cpp40 get_compute_param(pipe_screen *pipe, pipe_shader_ir ir_format, in get_compute_param() argument
42 int sz = pipe->get_compute_param(pipe, ir_format, cap, NULL); in get_compute_param()
45 pipe->get_compute_param(pipe, ir_format, cap, &v.front()); in get_compute_param()
52 pipe = pipe_loader_create_screen(ldev); in device()
53 if (pipe && pipe->get_param(pipe, PIPE_CAP_COMPUTE)) { in device()
65 if (pipe) in device()
66 pipe->destroy(pipe); in device()
73 if (pipe) in ~device()
74 pipe->destroy(pipe); in ~device()
122 return pipe->get_param(pipe, PIPE_CAP_MAX_TEXTURE_BUFFER_SIZE); in max_image_buffer_size()
[all …]
Dresource.cpp36 pipe({ (int)origin[0], (int16_t)origin[1], in box()
42 return &pipe; in operator const pipe_box*()
46 pipe_box pipe; member in __anona31cb0200111::box
51 device(dev), obj(obj), pipe(NULL), offset() { in resource()
62 q.pipe->resource_copy_region(q.pipe, pipe, 0, p[0], p[1], p[2], in copy()
63 src_res.pipe, 0, in copy()
72 if (pipe->target == PIPE_BUFFER) { in clear()
73 q.pipe->clear_buffer(q.pipe, pipe, from[0], region[0], data.data(), data.size()); in clear()
76 texture_data.reserve(util_format_get_blocksize(pipe->format)); in clear()
77 util_format_pack_rgba(pipe->format, &texture_data[0], data.data(), 1); in clear()
[all …]
/external/okio/okio/src/jvmTest/kotlin/okio/
DPipeKotlinTest.kt42 @Test fun pipe() { in pipe() method in okio.PipeKotlinTest
43 val pipe = Pipe(6) in pipe() constant
44 pipe.sink.write(Buffer().writeUtf8("abc"), 3L) in pipe()
47 assertEquals(3L, pipe.source.read(readBuffer, 6L)) in pipe()
50 pipe.sink.close() in pipe()
51 assertEquals(-1L, pipe.source.read(readBuffer, 6L)) in pipe()
53 pipe.source.close() in pipe()
57 val pipe = Pipe(128) in fold() constant
59 val pipeSink = pipe.sink.buffer() in fold()
63 val pipeSource = pipe.source.buffer() in fold()
[all …]
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_perfquery.c42 struct pipe_context *pipe = st->pipe; in st_have_perfquery() local
44 return pipe->init_intel_perf_query_info && pipe->get_intel_perf_query_info && in st_have_perfquery()
45 pipe->get_intel_perf_query_counter_info && in st_have_perfquery()
46 pipe->new_intel_perf_query_obj && pipe->begin_intel_perf_query && in st_have_perfquery()
47 pipe->end_intel_perf_query && pipe->delete_intel_perf_query && in st_have_perfquery()
48 pipe->wait_intel_perf_query && pipe->is_intel_perf_query_ready && in st_have_perfquery()
49 pipe->get_intel_perf_query_data; in st_have_perfquery()
55 struct pipe_context *pipe = st_context(ctx)->pipe; in st_InitPerfQueryInfo() local
57 return pipe->init_intel_perf_query_info(pipe); in st_InitPerfQueryInfo()
68 struct pipe_context *pipe = st_context(ctx)->pipe; in st_GetPerfQueryInfo() local
[all …]
/external/mesa3d/src/gallium/auxiliary/util/
Du_blitter.c161 struct blitter_context *util_blitter_create(struct pipe_context *pipe) in util_blitter_create() argument
175 ctx->base.pipe = pipe; in util_blitter_create()
178 ctx->bind_fs_state = pipe->bind_fs_state; in util_blitter_create()
179 ctx->delete_fs_state = pipe->delete_fs_state; in util_blitter_create()
195 pipe->screen->get_shader_param(pipe->screen, PIPE_SHADER_GEOMETRY, in util_blitter_create()
199 pipe->screen->get_shader_param(pipe->screen, PIPE_SHADER_TESS_CTRL, in util_blitter_create()
203 pipe->screen->get_param(pipe->screen, in util_blitter_create()
207 pipe->screen->get_param(pipe->screen, in util_blitter_create()
211 pipe->screen->get_param(pipe->screen, PIPE_CAP_TEXTURE_MULTISAMPLE); in util_blitter_create()
213 ctx->has_tex_lz = pipe->screen->get_param(pipe->screen, in util_blitter_create()
[all …]
/external/mesa3d/src/gallium/auxiliary/driver_rbug/
Drbug_context.c45 struct pipe_context *pipe = rb_pipe->pipe; in rbug_destroy() local
50 pipe->destroy(pipe); in rbug_destroy()
51 rb_pipe->pipe = NULL; in rbug_destroy()
120 struct pipe_context *pipe = rb_pipe->pipe; in rbug_draw_vbo() local
135 pipe->draw_vbo(pipe, &info); in rbug_draw_vbo()
148 struct pipe_context *pipe = rb_pipe->pipe; in rbug_create_query() local
152 query = pipe->create_query(pipe, in rbug_create_query()
164 struct pipe_context *pipe = rb_pipe->pipe; in rbug_destroy_query() local
167 pipe->destroy_query(pipe, in rbug_destroy_query()
177 struct pipe_context *pipe = rb_pipe->pipe; in rbug_begin_query() local
[all …]
/external/mesa3d/src/freedreno/drm/
Dmsm_pipe.c31 static int query_param(struct fd_pipe *pipe, uint32_t param, in query_param() argument
34 struct msm_pipe *msm_pipe = to_msm_pipe(pipe); in query_param()
36 .pipe = msm_pipe->pipe, in query_param()
41 ret = drmCommandWriteRead(pipe->dev->fd, DRM_MSM_GET_PARAM, in query_param()
51 static int query_queue_param(struct fd_pipe *pipe, uint32_t param, in query_queue_param() argument
54 struct msm_pipe *msm_pipe = to_msm_pipe(pipe); in query_queue_param()
63 ret = drmCommandWriteRead(pipe->dev->fd, DRM_MSM_SUBMITQUEUE_QUERY, in query_queue_param()
71 static int msm_pipe_get_param(struct fd_pipe *pipe, in msm_pipe_get_param() argument
74 struct msm_pipe *msm_pipe = to_msm_pipe(pipe); in msm_pipe_get_param()
90 return query_param(pipe, MSM_PARAM_MAX_FREQ, value); in msm_pipe_get_param()
[all …]
Dfreedreno_pipe.c37 struct fd_pipe *pipe; in fd_pipe_new2() local
50 pipe = dev->funcs->pipe_new(dev, id, prio); in fd_pipe_new2()
51 if (!pipe) { in fd_pipe_new2()
56 pipe->dev = dev; in fd_pipe_new2()
57 pipe->id = id; in fd_pipe_new2()
58 p_atomic_set(&pipe->refcnt, 1); in fd_pipe_new2()
60 fd_pipe_get_param(pipe, FD_GPU_ID, &val); in fd_pipe_new2()
61 pipe->gpu_id = val; in fd_pipe_new2()
63 return pipe; in fd_pipe_new2()
72 struct fd_pipe * fd_pipe_ref(struct fd_pipe *pipe) in fd_pipe_ref() argument
[all …]
/external/rust/crates/quiche/src/
Dlib.rs8539 let mut pipe = testing::Pipe::with_client_config(&mut config).unwrap(); in unknown_version() localVariable
8540 assert_eq!(pipe.handshake(), Err(Error::UnknownVersion)); in unknown_version()
8567 let mut pipe = testing::Pipe::with_client_config(&mut config).unwrap(); in version_negotiation() localVariable
8569 let (mut len, _) = pipe.client.send(&mut buf).unwrap(); in version_negotiation()
8574 assert_eq!(pipe.client_recv(&mut buf[..len]), Ok(len)); in version_negotiation()
8576 assert_eq!(pipe.handshake(), Ok(())); in version_negotiation()
8578 assert_eq!(pipe.client.version, PROTOCOL_VERSION); in version_negotiation()
8579 assert_eq!(pipe.server.version, PROTOCOL_VERSION); in version_negotiation()
8593 let mut pipe = testing::Pipe::with_client_config(&mut config).unwrap(); in verify_custom_root() localVariable
8594 assert_eq!(pipe.handshake(), Ok(())); in verify_custom_root()
[all …]
/external/armnn/src/profiling/test/
DProfilingTestUtils.cpp30 payloadSize += arm::pipe::numeric_cast<uint32_t>(arm::pipe::ARMNN_SOFTWARE_INFO.size()) + 1; in GetStreamMetaDataPacketSize()
31 payloadSize += arm::pipe::numeric_cast<uint32_t>(arm::pipe::ARMNN_HARDWARE_VERSION.size()) + 1; in GetStreamMetaDataPacketSize()
32 payloadSize += arm::pipe::numeric_cast<uint32_t>(arm::pipe::ARMNN_SOFTWARE_VERSION.size()) + 1; in GetStreamMetaDataPacketSize()
33 payloadSize += arm::pipe::numeric_cast<uint32_t>(GetProcessName().size()) + 1; in GetStreamMetaDataPacketSize()
105 ProfilingGuid VerifyTimelineLabelBinaryPacketData(arm::pipe::Optional<ProfilingGuid> guid, in VerifyTimelineLabelBinaryPacketData()
115 unsigned int label_size = arm::pipe::numeric_cast<unsigned int>(label.size()); in VerifyTimelineLabelBinaryPacketData()
131 ProfilingService profilingService(arm::pipe::MAX_ARMNN_COUNTER, in VerifyTimelineLabelBinaryPacketData()
133 arm::pipe::ARMNN_SOFTWARE_INFO, in VerifyTimelineLabelBinaryPacketData()
134 arm::pipe::ARMNN_SOFTWARE_VERSION, in VerifyTimelineLabelBinaryPacketData()
135 arm::pipe::ARMNN_HARDWARE_VERSION); in VerifyTimelineLabelBinaryPacketData()
[all …]
DTimelineUtilityMethodsTests.cpp25 using namespace arm::pipe;
33 ProfilingService profilingService(arm::pipe::MAX_ARMNN_COUNTER,
35 arm::pipe::ARMNN_SOFTWARE_INFO,
36 arm::pipe::ARMNN_SOFTWARE_VERSION,
37 arm::pipe::ARMNN_HARDWARE_VERSION);
69 … VerifyTimelineLabelBinaryPacketData(arm::pipe::EmptyOptional(), entityName, readableData, offset);
73 arm::pipe::EmptyOptional(),
75 arm::pipe::EmptyOptional(),
88 ProfilingService profilingService(arm::pipe::MAX_ARMNN_COUNTER,
90 arm::pipe::ARMNN_SOFTWARE_INFO,
[all …]
/external/libdrm/freedreno/msm/
Dmsm_pipe.c31 static int query_param(struct fd_pipe *pipe, uint32_t param, in query_param() argument
34 struct msm_pipe *msm_pipe = to_msm_pipe(pipe); in query_param()
36 .pipe = msm_pipe->pipe, in query_param()
41 ret = drmCommandWriteRead(pipe->dev->fd, DRM_MSM_GET_PARAM, in query_param()
51 static int msm_pipe_get_param(struct fd_pipe *pipe, in msm_pipe_get_param() argument
54 struct msm_pipe *msm_pipe = to_msm_pipe(pipe); in msm_pipe_get_param()
67 return query_param(pipe, MSM_PARAM_MAX_FREQ, value); in msm_pipe_get_param()
69 return query_param(pipe, MSM_PARAM_TIMESTAMP, value); in msm_pipe_get_param()
71 return query_param(pipe, MSM_PARAM_NR_RINGS, value); in msm_pipe_get_param()
78 static int msm_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp, in msm_pipe_wait() argument
[all …]
/external/okio/okio/src/jvmTest/java/okio/
DPipeTest.java41 Pipe pipe = new Pipe(6); in test() local
42 pipe.sink().write(new Buffer().writeUtf8("abc"), 3L); in test()
44 Source source = pipe.source(); in test()
49 pipe.sink().close(); in test()
60 final Pipe pipe = new Pipe(1000L); // An awkward size to force producer/consumer exchange. in largeDataset() local
67 HashingSink hashingSink = HashingSink.sha1(pipe.sink()); in largeDataset()
90 while (pipe.source().read(buffer, Long.MAX_VALUE) != -1) { in largeDataset()
95 pipe.source().close(); in largeDataset()
107 Pipe pipe = new Pipe(3); in sinkTimeout() local
108 pipe.sink().timeout().timeout(1000, TimeUnit.MILLISECONDS); in sinkTimeout()
[all …]
/external/mesa3d/src/gallium/auxiliary/vl/
Dvl_deint_filter.c83 return ureg_create_shader_and_destroy(shader, filter->pipe); in create_vert_shader()
119 return ureg_create_shader_and_destroy(shader, filter->pipe); in create_copy_frag_shader()
232 return ureg_create_shader_and_destroy(shader, filter->pipe); in create_deint_frag_shader()
236 vl_deint_filter_init(struct vl_deint_filter *filter, struct pipe_context *pipe, in vl_deint_filter_init() argument
247 assert(filter && pipe); in vl_deint_filter_init()
251 filter->pipe = pipe; in vl_deint_filter_init()
258 templ.buffer_format = pipe->screen->get_video_param in vl_deint_filter_init()
260 pipe->screen, in vl_deint_filter_init()
268 filter->video_buffer = vl_video_buffer_create(pipe, &templ); in vl_deint_filter_init()
278 filter->rs_state = pipe->create_rasterizer_state(pipe, &rs_state); in vl_deint_filter_init()
[all …]
Dvl_matrix_filter.c68 return ureg_create_shader_and_destroy(shader, filter->pipe); in create_vert_shader()
128 return ureg_create_shader_and_destroy(shader, filter->pipe); in create_frag_shader()
132 vl_matrix_filter_init(struct vl_matrix_filter *filter, struct pipe_context *pipe, in vl_matrix_filter_init() argument
144 assert(filter && pipe); in vl_matrix_filter_init()
149 filter->pipe = pipe; in vl_matrix_filter_init()
157 filter->rs_state = pipe->create_rasterizer_state(pipe, &rs_state); in vl_matrix_filter_init()
170 filter->blend = pipe->create_blend_state(pipe, &blend); in vl_matrix_filter_init()
184 filter->sampler = pipe->create_sampler_state(pipe, &sampler); in vl_matrix_filter_init()
188 filter->quad = vl_vb_upload_quads(pipe); in vl_matrix_filter_init()
197 filter->ves = pipe->create_vertex_elements_state(pipe, 1, &ve); in vl_matrix_filter_init()
[all …]
/external/igt-gpu-tools/tests/
Dkms_color.c213 igt_pipe_t *pipe, in set_degamma() argument
220 igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_DEGAMMA_LUT, lut, size); in set_degamma()
226 igt_pipe_t *pipe, in set_gamma() argument
233 igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_GAMMA_LUT, lut, size); in set_gamma()
238 static void set_ctm(igt_pipe_t *pipe, const double *coefficients) in set_ctm() argument
253 igt_pipe_obj_replace_prop_blob(pipe, IGT_CRTC_CTM, &ctm, sizeof(ctm)); in set_ctm()
256 static void disable_prop(igt_pipe_t *pipe, enum igt_atomic_crtc_properties prop) in disable_prop() argument
258 if (igt_pipe_obj_has_prop(pipe, prop)) in disable_prop()
259 igt_pipe_obj_replace_prop_blob(pipe, prop, NULL, 0); in disable_prop()
262 #define disable_degamma(pipe) disable_prop(pipe, IGT_CRTC_DEGAMMA_LUT) argument
[all …]
Dkms_flip_tiling.c43 static igt_pipe_crc_t *pipe_crc_new(data_t *data, int pipe) in pipe_crc_new() argument
50 _pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe, INTEL_PIPE_CRC_SOURCE_AUTO); in pipe_crc_new()
65 test_flip_tiling(data_t *data, enum pipe pipe, igt_output_t *output, uint64_t tiling[2]) in test_flip_tiling() argument
74 pipe_crc = pipe_crc_new(data, pipe); in test_flip_tiling()
75 igt_output_set_pipe(output, pipe); in test_flip_tiling()
176 enum pipe pipe; variable
178 for_each_pipe_with_valid_output(&data.display, pipe, output)
179 test_flip_tiling(&data, pipe, output, tiling);
185 enum pipe pipe; variable
190 for_each_pipe_with_valid_output(&data.display, pipe, output)
[all …]
/external/armnn/src/timelineDecoder/tests/
DJSONTimelineDecoderTests.cpp25 arm::pipe::ITimelineDecoder::Label name; in RunSimpleModelThroughDecoder()
30 arm::pipe::ITimelineDecoder::Label type; in RunSimpleModelThroughDecoder()
35 arm::pipe::ITimelineDecoder::Label index; in RunSimpleModelThroughDecoder()
40 arm::pipe::ITimelineDecoder::Label backendId; in RunSimpleModelThroughDecoder()
45 arm::pipe::ITimelineDecoder::Label layer; in RunSimpleModelThroughDecoder()
50 arm::pipe::ITimelineDecoder::Label workload; in RunSimpleModelThroughDecoder()
55 arm::pipe::ITimelineDecoder::Label network; in RunSimpleModelThroughDecoder()
60 arm::pipe::ITimelineDecoder::Label connection; in RunSimpleModelThroughDecoder()
65 arm::pipe::ITimelineDecoder::Label inference; in RunSimpleModelThroughDecoder()
70 arm::pipe::ITimelineDecoder::Label workload_execution; in RunSimpleModelThroughDecoder()
[all …]
/external/mesa3d/src/mesa/main/
Dpipelineobj.c211 struct gl_pipeline_object *pipe) { in use_program_stage() argument
217 _mesa_use_program(ctx, stage, shProg, prog, pipe); in use_program_stage()
222 GLbitfield stages, struct gl_pipeline_object *pipe) { in use_program_stages() argument
238 use_program_stage(ctx, GL_VERTEX_SHADER, shProg, pipe); in use_program_stages()
241 use_program_stage(ctx, GL_FRAGMENT_SHADER, shProg, pipe); in use_program_stages()
244 use_program_stage(ctx, GL_GEOMETRY_SHADER, shProg, pipe); in use_program_stages()
247 use_program_stage(ctx, GL_TESS_CONTROL_SHADER, shProg, pipe); in use_program_stages()
250 use_program_stage(ctx, GL_TESS_EVALUATION_SHADER, shProg, pipe); in use_program_stages()
253 use_program_stage(ctx, GL_COMPUTE_SHADER, shProg, pipe); in use_program_stages()
255 pipe->Validated = false; in use_program_stages()
[all …]
/external/libdrm/freedreno/
Dfreedreno_pipe.c39 struct fd_pipe *pipe; in fd_pipe_new2() local
52 pipe = dev->funcs->pipe_new(dev, id, prio); in fd_pipe_new2()
53 if (!pipe) { in fd_pipe_new2()
58 pipe->dev = dev; in fd_pipe_new2()
59 pipe->id = id; in fd_pipe_new2()
60 atomic_set(&pipe->refcnt, 1); in fd_pipe_new2()
62 fd_pipe_get_param(pipe, FD_GPU_ID, &val); in fd_pipe_new2()
63 pipe->gpu_id = val; in fd_pipe_new2()
65 return pipe; in fd_pipe_new2()
74 drm_public struct fd_pipe * fd_pipe_ref(struct fd_pipe *pipe) in fd_pipe_ref() argument
[all …]
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_state.c90 nvc0_blend_state_create(struct pipe_context *pipe, in nvc0_blend_state_create() argument
101 so->pipe = *cso; in nvc0_blend_state_create()
196 nvc0_blend_state_bind(struct pipe_context *pipe, void *hwcso) in nvc0_blend_state_bind() argument
198 struct nvc0_context *nvc0 = nvc0_context(pipe); in nvc0_blend_state_bind()
205 nvc0_blend_state_delete(struct pipe_context *pipe, void *hwcso) in nvc0_blend_state_delete() argument
212 nvc0_rasterizer_state_create(struct pipe_context *pipe, in nvc0_rasterizer_state_create() argument
216 uint16_t class_3d = nouveau_screen(pipe->screen)->class_3d; in nvc0_rasterizer_state_create()
222 so->pipe = *cso; in nvc0_rasterizer_state_create()
348 nvc0_rasterizer_state_bind(struct pipe_context *pipe, void *hwcso) in nvc0_rasterizer_state_bind() argument
350 struct nvc0_context *nvc0 = nvc0_context(pipe); in nvc0_rasterizer_state_bind()
[all …]
/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_state.c117 nv50_blend_state_create(struct pipe_context *pipe, in nv50_blend_state_create() argument
125 if (nv50_context(pipe)->screen->tesla->oclass >= NVA3_3D_CLASS) { in nv50_blend_state_create()
130 so->pipe = *cso; in nv50_blend_state_create()
146 if (nv50_context(pipe)->screen->tesla->oclass >= NVA3_3D_CLASS) { in nv50_blend_state_create()
209 nv50_blend_state_bind(struct pipe_context *pipe, void *hwcso) in nv50_blend_state_bind() argument
211 struct nv50_context *nv50 = nv50_context(pipe); in nv50_blend_state_bind()
218 nv50_blend_state_delete(struct pipe_context *pipe, void *hwcso) in nv50_blend_state_delete() argument
225 nv50_rasterizer_state_create(struct pipe_context *pipe, in nv50_rasterizer_state_create() argument
234 so->pipe = *cso; in nv50_rasterizer_state_create()
346 nv50_rasterizer_state_bind(struct pipe_context *pipe, void *hwcso) in nv50_rasterizer_state_bind() argument
[all …]
/external/armnn/profiling/server/src/timelineDecoder/tests/
DTimelineTests.cpp23 arm::pipe::CommandHandlerFunctor& CommandHandler) in SendTimelinePacketToCommandHandler()
29 header[0] = arm::pipe::ReadUint32(packetBuffer, offset); in SendTimelinePacketToCommandHandler()
31 header[1] = arm::pipe::ReadUint32(packetBuffer, offset); in SendTimelinePacketToCommandHandler()
38 arm::pipe::Packet packet(header[0], PacketDataLength, uniquePacketData); in SendTimelinePacketToCommandHandler()
45 void PushEntity(arm::pipe::TimelineDecoder::Model& model, const arm::pipe::ITimelineDecoder::Entity… in PushEntity()
50 void PushEventClass(arm::pipe::TimelineDecoder::Model& model, const arm::pipe::ITimelineDecoder::Ev… in PushEventClass()
55 void PushEvent(arm::pipe::TimelineDecoder::Model& model, const arm::pipe::ITimelineDecoder::Event e… in PushEvent()
60 void PushLabel(arm::pipe::TimelineDecoder::Model& model, const arm::pipe::ITimelineDecoder::Label l… in PushLabel()
65 void PushRelationship(arm::pipe::TimelineDecoder::Model& model, in PushRelationship()
66 const arm::pipe::ITimelineDecoder::Relationship relationship) in PushRelationship()
[all …]

12345678910>>...92