HomeSort by relevance Sort by last modified time
    Searched defs:pipe (Results 1 - 25 of 490) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
pipe.cpp 31 int pipe(int pipefd[2]) { function
  /external/skia/gn/
ar.py 25 pipe = subprocess.Popen([ar, "rcs", output] + objects, stderr=subprocess.PIPE) variable
26 _, err = pipe.communicate()
30 sys.exit(pipe.returncode)
  /external/bison/lib/
unistd--.h 26 #undef pipe macro
27 #define pipe pipe_safer macro
  /external/mesa3d/src/gallium/drivers/identity/
id_context.h 31 #include "pipe/p_state.h"
32 #include "pipe/p_context.h"
38 struct pipe_context *pipe; member in struct:identity_context
43 identity_context_create(struct pipe_screen *screen, struct pipe_context *pipe);
47 identity_context(struct pipe_context *pipe)
49 return (struct identity_context *)pipe;
  /external/mesa3d/src/gallium/drivers/trace/
tr_context.h 32 #include "pipe/p_compiler.h"
34 #include "pipe/p_context.h"
49 struct pipe_context *pipe; member in struct:trace_context
54 trace_context(struct pipe_context *pipe)
56 assert(pipe);
57 return (struct trace_context *)pipe;
63 struct pipe_context *pipe);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_texturebarrier.c 39 #include "pipe/p_context.h"
40 #include "pipe/p_defines.h"
51 struct pipe_context *pipe = st_context(ctx)->pipe; local
53 pipe->texture_barrier(pipe);
st_cb_condrender.c 39 #include "pipe/p_context.h"
40 #include "pipe/p_defines.h"
56 struct pipe_context *pipe = st->pipe; local
82 pipe->render_condition(pipe, stq->pq, m);
93 struct pipe_context *pipe = st->pipe; local
98 pipe->render_condition(pipe, NULL, 0)
    [all...]
  /external/clang/test/CodeGen/
2008-07-31-asm-labels.c 2 // RUN: not grep "@pipe()" %t
7 // RUN: not grep "@pipe()" %t
11 void pipe() asm("_thisIsNotAPipe");
14 pipe();
17 void pipe(int);
20 pipe(1);
24 void pipe(int arg) { function
  /external/valgrind/coregrind/m_scheduler/
priv_sema.h 36 /* Not really a semaphore, but use a pipe for a token-passing scheme */
38 Int pipe[2]; member in struct:__anon35631
  /external/libdrm/freedreno/
freedreno_pipe.c 39 struct fd_pipe *pipe = NULL; local
42 ERROR_MSG("invalid pipe id: %d", id);
46 pipe = dev->funcs->pipe_new(dev, id);
47 if (!pipe) {
52 pipe->dev = dev;
53 pipe->id = id;
55 return pipe;
57 if (pipe)
58 fd_pipe_del(pipe);
62 void fd_pipe_del(struct fd_pipe *pipe)
    [all...]
  /external/mesa3d/src/gallium/drivers/galahad/
glhd_context.h 33 #include "pipe/p_state.h"
34 #include "pipe/p_context.h"
42 struct pipe_context *pipe; member in struct:galahad_context
47 galahad_context_create(struct pipe_screen *screen, struct pipe_context *pipe);
51 galahad_context(struct pipe_context *pipe)
53 return (struct galahad_context *)pipe;
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_stateobj_tex.h 5 #include "pipe/p_state.h"
19 struct pipe_sampler_view pipe; member in struct:nv50_tic_entry
  /external/mesa3d/src/gallium/state_trackers/vega/
api_context.c 33 #include "pipe/p_context.h"
34 #include "pipe/p_screen.h"
53 struct pipe_context *pipe; local
58 pipe = ctx->pipe;
59 pipe->flush(pipe, NULL);
68 struct pipe_context *pipe; local
73 pipe = ctx->pipe;
    [all...]
  /external/libmojo/ipc/
ipc_channel_handle.h 21 // On Windows the initialization of ChannelHandle with an existing pipe
23 // NOTE: A ChannelHandle with a pipe handle Will NOT be marshalled over IPC.
46 explicit ChannelHandle(HANDLE h) : pipe(h) {}
57 // A simple container to automatically initialize pipe handle
63 PipeHandle pipe; member in struct:IPC::ChannelHandle
  /external/libmojo/mojo/edk/js/
handle_unittest.cc 65 mojo::MessagePipe pipe; local
66 TestHandleWrapper wrapper(pipe.handle0.release().value());
82 mojo::MessagePipe pipe; local
83 TestHandleWrapper wrapper(pipe.handle0.release().value());
  /external/linux-kselftest/tools/testing/selftests/powerpc/pmu/
lib.h 14 union pipe { union
25 extern int sync_with_child(union pipe read_pipe, union pipe write_pipe);
26 extern int wait_for_parent(union pipe read_pipe);
27 extern int notify_parent(union pipe write_pipe);
28 extern int notify_parent_of_error(union pipe write_pipe);
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_matrix_filter.h 34 #include "pipe/p_state.h"
38 struct pipe_context *pipe; member in struct:vl_matrix_filter
49 vl_matrix_filter_init(struct vl_matrix_filter *filter, struct pipe_context *pipe,
  /external/mesa3d/src/gallium/state_trackers/vdpau/
bitmap.c 45 struct pipe_context *pipe; local
58 pipe = dev->context;
59 if (!pipe)
82 res = pipe->screen->resource_create(pipe->screen, &res_tmpl);
90 vlsurface->sampler_view = pipe->create_sampler_view(pipe, res, &sv_templ);
171 struct pipe_context *pipe; local
180 pipe = vlsurface->device->context;
187 pipe->transfer_inline_write(pipe, vlsurface->sampler_view->texture, 0
    [all...]
  /device/generic/goldfish/libqemu/
test_guest_1.c 17 /* This program uses a QEMUD pipe to exchange data with a test
42 Pipe pipe[1]; local
47 if (pipe_openSocket(pipe, port) < 0) {
53 if (pipe_openQemuPipe(pipe, PIPE_NAME) < 0) {
54 fprintf(stderr, "Could not open '%s' pipe: %s\n", PIPE_NAME, strerror(errno));
57 printf("Connected to '%s' pipe\n", PIPE_NAME);
70 int ret = pipe_send(pipe, buff, len);
79 ret = pipe_recv(pipe, buff2, len);
98 printf("Closing pipe\n")
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
PBlackBox.h 63 ANTLRTokenBuffer *pipe; member in class:ParserBlackBox
73 , pipe(0)
88 pipe = new ANTLRTokenBuffer(scan);
91 _parser = new Parser(pipe);
99 , pipe(0)
114 pipe = new ANTLRTokenBuffer(scan);
117 _parser = new Parser(pipe);
124 delete in; delete scan; delete pipe; delete _parser; delete tok;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
PBlackBox.h 54 ANTLRTokenBuffer *pipe; member in class:ParserBlackBox
66 pipe = new ANTLRTokenBuffer(scan);
69 _parser = new Parser(pipe);
84 pipe = new ANTLRTokenBuffer(scan);
87 _parser = new Parser(pipe);
94 delete in; delete scan; delete pipe; delete _parser; delete tok;
  /external/drm_hwcomposer/
drmcrtc.cpp 29 DrmCrtc::DrmCrtc(DrmResources *drm, drmModeCrtcPtr c, unsigned pipe)
32 pipe_(pipe),
61 unsigned DrmCrtc::pipe() const { function in class:android::DrmCrtc
  /external/libdrm/freedreno/msm/
msm_pipe.c 36 static int msm_pipe_get_param(struct fd_pipe *pipe,
39 struct msm_pipe *msm_pipe = to_msm_pipe(pipe);
57 static int msm_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp,
60 struct fd_device *dev = pipe->dev;
77 static void msm_pipe_destroy(struct fd_pipe *pipe)
79 struct msm_pipe *msm_pipe = to_msm_pipe(pipe);
90 static uint64_t get_param(struct fd_device *dev, uint32_t pipe, uint32_t param)
93 .pipe = pipe,
115 struct fd_pipe *pipe = NULL local
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/
interface_request.h 18 // over a specified message pipe. The implementor of the interface should
19 // remove the message pipe by calling PassMessagePipe() and bind it to the
21 // close the pipe on destruction. Can also represent the absence of a request
22 // if the client did not provide a message pipe.
31 // Takes the message pipe from another InterfaceRequest.
41 // closing the message pipe currently bound to it (if any).
47 // Binds the request to a message pipe over which Interface is to be
48 // requested. If the request is already bound to a message pipe, the current
49 // message pipe will be closed.
52 // Indicates whether the request currently contains a valid message pipe
131 MessagePipe pipe; local
    [all...]
  /external/ltp/testcases/kernel/syscalls/fstatfs/
fstatfs01.c 64 {&pipe_fd, "fstatfs() on a pipe"},
99 int pipe[2]; local
109 SAFE_PIPE(cleanup, pipe);
110 pipe_fd = pipe[0];
111 SAFE_CLOSE(cleanup, pipe[1]);

Completed in 757 milliseconds

1 2 3 4 5 6 7 8 91011>>