/bionic/libc/arch-arm/syscalls/ |
pipe.S | 6 ENTRY(pipe) function 15 END(pipe)
|
/bionic/libc/arch-mips/bionic/ |
pipe.S | 30 * The MIPS pipe syscall returns results in two registers, which 39 /* int pipe(int[]) */ 41 .type pipe,@function 42 .global pipe 44 .ent pipe 45 pipe: label 60 .end pipe
|
/bionic/libc/arch-x86/syscalls/ |
pipe.S | 6 ENTRY(pipe) function 21 END(pipe)
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/ |
pipe.c | 8 int pipe(int pipefds[2]) { function
|
/external/bison/lib/ |
unistd--.h | 26 #undef pipe macro 27 #define pipe pipe_safer macro
|
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/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/chromium_org/sandbox/win/src/ |
named_pipe_policy.cc | 16 // Creates a named pipe and duplicates the handle to 'target_process'. The 23 HANDLE pipe = ::CreateNamedPipeW(pipe_name, open_mode, pipe_mode, local 27 if (INVALID_HANDLE_VALUE == pipe) 28 return pipe; 31 if (!::DuplicateHandle(::GetCurrentProcess(), pipe, 51 PolicyRule pipe(ASK_BROKER); 52 if (!pipe.AddStringMatch(IF, NameBased::NAME, name, CASE_INSENSITIVE)) { 55 if (!policy->AddRule(IPC_CREATENAMEDPIPEW_TAG, &pipe)) { 69 HANDLE* pipe) { 70 // The only action supported is ASK_BROKER which means create the pipe [all...] |
named_pipe_interception.cc | 23 HANDLE pipe = orig_CreateNamedPipeW(pipe_name, open_mode, pipe_mode, local 27 if (INVALID_HANDLE_VALUE != pipe) 28 return pipe;
|
named_pipe_policy_test.cc | 24 HANDLE pipe = ::CreateNamedPipeW(argv[0], local 28 if (INVALID_HANDLE_VALUE == pipe) 32 // pipe should be in the object namespace after creation. 35 if (GetHandleName(pipe, &handle_name)) { 45 BOOL result = ::ConnectNamedPipe(pipe, &overlapped); 55 if (!::CloseHandle(pipe)) 62 // Tests if we can create a pipe in the sandbox. 69 L"\\\\.\\pipe\\test*")); 72 runner.RunTest(L"NamedPipe_Create \\\\.\\pipe\\testbleh")); 74 // On XP, the sandbox can create a pipe without any help but it fails o [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/main/coregrind/m_scheduler/ |
priv_sema.h | 34 /* Not really a semaphore, but use a pipe for a token-passing scheme */ 36 Int pipe[2]; member in struct:__anon27848
|
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/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/chromium_org/ipc/ |
ipc_channel_handle.h | 20 // On Windows the initialization of ChannelHandle with an existing pipe 22 // NOTE: A ChannelHandle with a pipe handle Will NOT be marshalled over IPC. 45 explicit ChannelHandle(HANDLE h) : pipe(h) {} 55 // A simple container to automatically initialize pipe handle 61 PipeHandle pipe; member in struct:IPC::ChannelHandle
|