Searched defs:pipe (Results 1 - 25 of 647) sorted by last modified time

1234567891011>>

/external/wpa_supplicant_8/hostapd/src/common/
H A Dwpa_ctrl.c70 HANDLE pipe; member in struct:wpa_ctrl
619 #define NAMED_PIPE_PREFIX TEXT("\\\\.\\pipe\\") TEXT(WPA_SUPPLICANT_NAMED_PIPE)
652 ctrl->pipe = CreateFile(name, GENERIC_READ | GENERIC_WRITE, 0,
655 * Current named pipe server side in wpa_supplicant is
656 * re-opening the pipe for new clients only after the previous
661 if (ctrl->pipe != INVALID_HANDLE_VALUE ||
666 if (ctrl->pipe == INVALID_HANDLE_VALUE) {
672 if (!SetNamedPipeHandleState(ctrl->pipe, &mode, NULL, NULL)) {
673 CloseHandle(ctrl->pipe);
684 CloseHandle(ctrl->pipe);
[all...]
/external/wpa_supplicant_8/src/common/
H A Dwpa_ctrl.c70 HANDLE pipe; member in struct:wpa_ctrl
619 #define NAMED_PIPE_PREFIX TEXT("\\\\.\\pipe\\") TEXT(WPA_SUPPLICANT_NAMED_PIPE)
652 ctrl->pipe = CreateFile(name, GENERIC_READ | GENERIC_WRITE, 0,
655 * Current named pipe server side in wpa_supplicant is
656 * re-opening the pipe for new clients only after the previous
661 if (ctrl->pipe != INVALID_HANDLE_VALUE ||
666 if (ctrl->pipe == INVALID_HANDLE_VALUE) {
672 if (!SetNamedPipeHandleState(ctrl->pipe, &mode, NULL, NULL)) {
673 CloseHandle(ctrl->pipe);
684 CloseHandle(ctrl->pipe);
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface_named_pipe.c44 #define NAMED_PIPE_PREFIX TEXT("\\\\.\\pipe\\") TEXT(WPA_SUPPLICANT_NAMED_PIPE)
65 HANDLE pipe; member in struct:wpa_ctrl_dst
100 static int ctrl_broken_pipe(HANDLE pipe, int used) argument
104 if (PeekNamedPipe(pipe, NULL, 0, NULL, NULL, NULL))
122 if (ctrl_broken_pipe(dst->pipe, dst->used)) {
123 wpa_printf(MSG_DEBUG, "CTRL: closing broken pipe %p",
141 wpa_printf(MSG_DEBUG, "CTRL: Open pipe %p", dst);
145 dst->pipe = INVALID_HANDLE_VALUE;
166 /* TODO: add support for configuring access list for the pipe */
167 dst->pipe
544 HANDLE pipe; member in struct:wpa_global_dst
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Dwpa_ctrl.c70 HANDLE pipe; member in struct:wpa_ctrl
619 #define NAMED_PIPE_PREFIX TEXT("\\\\.\\pipe\\") TEXT(WPA_SUPPLICANT_NAMED_PIPE)
652 ctrl->pipe = CreateFile(name, GENERIC_READ | GENERIC_WRITE, 0,
655 * Current named pipe server side in wpa_supplicant is
656 * re-opening the pipe for new clients only after the previous
661 if (ctrl->pipe != INVALID_HANDLE_VALUE ||
666 if (ctrl->pipe == INVALID_HANDLE_VALUE) {
672 if (!SetNamedPipeHandleState(ctrl->pipe, &mode, NULL, NULL)) {
673 CloseHandle(ctrl->pipe);
684 CloseHandle(ctrl->pipe);
[all...]
/external/valgrind/main/coregrind/
H A Dm_libcfile.c203 Int VG_(pipe) ( Int fd[2] ) function
/external/valgrind/main/coregrind/m_scheduler/
H A Dpriv_sema.h36 /* Not really a semaphore, but use a pipe for a token-passing scheme */
38 Int pipe[2]; member in struct:__anon32562
/external/valgrind/main/include/vki/
H A Dvki-linux-drm.h694 int pipe; member in struct:vki_drm_i915_vblank_pipe
803 __vki_u32 pipe; member in struct:vki_drm_i915_get_pipe_from_crtc_id
/external/qemu/android/
H A Dhw-pipe-net.c17 /* This file implements the 'tcp:' goldfish pipe type which allows
28 #include "hw/android/goldfish/pipe.h"
30 /* Implement the OpenGL fast-pipe */
75 netPipe_free( NetPipe* pipe )
80 fd = pipe->io->fd;
81 loopIo_done(pipe->io);
84 /* Release the pipe object */
85 AFREE(pipe);
90 netPipe_resetState( NetPipe* pipe )
92 if ((pipe
112 NetPipe* pipe = opaque; local
140 NetPipe* pipe = opaque; local
189 NetPipe* pipe; local
232 NetPipe* pipe = opaque; local
236 netPipeReadySend(NetPipe *pipe) argument
251 NetPipe* pipe = opaque; local
309 NetPipe* pipe = opaque; local
362 NetPipe* pipe = opaque; local
377 NetPipe* pipe = opaque; local
485 NetPipe *pipe; local
[all...]
H A Dhw-qemud.c19 #include "hw/android/goldfish/pipe.h"
584 /* Descriptor for a data buffer pending to be sent to a qemud pipe client.
600 * to the pipe yet. */
608 * Each client has its own channel id (for the serial qemud), or pipe descriptor
609 * (for the pipe based qemud), and belongs to a given QemudService (see below).
618 /* Defines type of the client: pipe, or serial.
621 /* Client is communicating via pipe. */
627 /* Descriptor for a QEMUD pipe connection.
629 * Every time a client connects to the QEMUD via pipe, an instance of this
630 * structure is created to represent a connection used by new pipe clien
1902 QemudPipe* pipe = NULL; local
1960 QemudPipe* pipe = opaque; local
1977 QemudPipe* pipe = opaque; local
2018 QemudPipe* pipe = opaque; local
2069 QemudPipe* pipe = opaque; local
[all...]
/external/qemu/hw/android/goldfish/
H A Dpipe.c14 #include "hw/android/goldfish/pipe.h"
44 /* Set to 1 to enable the 'zero' pipe type, useful for debugging */
47 /* Set to 1 to enable the 'pingpong' pipe type, useful for debugging */
50 /* Set to 1 to enable the 'throttle' pipe type, useful for debugging */
53 /* Maximum length of pipe service name, in characters (excluding final 0) */
91 APANIC("Too many goldfish pipe services (%d)", count);
144 static void* pipeConnector_new(Pipe* pipe);
149 Pipe* pipe; local
150 ANEW0(pipe);
151 pipe
158 Pipe* pipe = pipe_new0(dev); local
222 pipe_save( Pipe* pipe, QEMUFile* file ) argument
255 Pipe* pipe; local
328 Pipe* pipe; member in struct:__anon29659
336 pipeConnector_new(Pipe* pipe) argument
414 Pipe* pipe = pcon->pipe; local
457 pipeConnector_save( void* pipe, QEMUFile* file ) argument
603 pingPongPipe_init0( PingPongPipe* pipe, void* hwpipe, void* svcOpaque ) argument
637 PingPongPipe* pipe = opaque; local
701 PingPongPipe* pipe = opaque; local
745 PingPongPipe* pipe = opaque; local
760 PingPongPipe* pipe = opaque; local
803 ThrottlePipe* pipe; local
817 ThrottlePipe* pipe = opaque; local
850 ThrottlePipe* pipe = opaque; local
879 ThrottlePipe* pipe = opaque; local
898 ThrottlePipe* pipe = opaque; local
916 ThrottlePipe* pipe = opaque; local
931 ThrottlePipe* pipe = opaque; local
975 Pipe* pipe = *lookup; local
1186 Pipe* pipe = dev->signaled_pipes; local
1204 Pipe* pipe = dev->signaled_pipes; local
1244 Pipe* pipe; local
1270 Pipe* pipe; local
1352 Pipe* pipe = hwpipe; local
1374 Pipe* pipe = hwpipe; local
[all...]
/external/qemu/qapi-auto-generated/
H A Dqapi-types.h3015 ChardevHostdev * pipe; member in union:ChardevBackend::__anon30072
/external/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_unittest.cc80 #define pipe(fds) _pipe(fds, 4096, O_BINARY) macro
586 // different things to handle them. We'll test by writing to a pipe and
593 // Need to create a new pipe each time because ReadStuff() expects
595 ASSERT_EQ(pipe(files), 0);
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...
/external/pcre/dist/sljit/
H A DsljitNativeTILEGX-encoder.c9497 /* Given a set of bundle bits and a specific pipe, returns which
9498 * instruction the bundle contains in that pipe.
9501 find_opcode(tilegx_bundle_bits bits, tilegx_pipeline pipe) argument
9503 const unsigned short *table = tilegx_bundle_decoder_fsms[pipe];
9527 int pipe; local
9541 /* For each pipe, find an instruction that fits. */
9542 for (pipe = min_pipe; pipe <= max_pipe; pipe++)
9549 opc = find_opcode (bits, (tilegx_pipeline)pipe);
[all...]
H A DsljitNativeTILEGX_64.c124 tilegx_pipeline pipe; member in struct:jit_instr
484 /* Mapping of bundle issue slot to assigned pipe. */
485 tilegx_pipeline pipe[TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE]; member in struct:Format
520 int pipe; local
521 for (pipe = 0; ((opcode->pipes & (1 << pipe)) == 0 && pipe < TILEGX_NUM_PIPELINE_ENCODINGS); pipe++)
523 return (tilegx_pipeline)(pipe);
534 inst_buf[0].pipe
599 tilegx_pipeline pipe = (tilegx_pipeline)(((TILEGX_PIPELINE_Y0 local
[all...]
/external/openfst/src/script/
H A Dinfo.cc28 bool pipe, bool verify) {
29 InfoArgs args(f, test_properties, arc_filter, info_type, pipe, verify);
26 PrintFstInfo(const FstClass &f, bool test_properties, const string &arc_filter, const string &info_type, bool pipe, bool verify) argument
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DPipeline.java52 private InputStream pipe; field in class:Pipeline
122 public Pipeline(InputStream pipe, int readTimeout, Timer timer) { argument
123 // pipe is the Socket stream
126 this.pipe = pipe;
159 this.pipe.close();
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom_framebuffer.c39 #include "pipe/p_context.h"
55 struct pipe_context *pipe = st->pipe; local
81 strb->surface = pipe->create_surface(pipe,
H A Dst_atom_pixeltransfer.c49 #include "pipe/p_screen.h"
50 #include "pipe/p_context.h"
94 struct pipe_context *pipe = st->pipe; local
104 transfer = pipe_get_transfer(pipe,
107 dest = (uint *) pipe_transfer_map(pipe, transfer);
129 pipe_transfer_unmap(pipe, transfer);
130 pipe->transfer_destroy(pipe, transfer);
205 st_create_texture_sampler_view(st->pipe,
[all...]
H A Dst_atom_texture.c46 #include "pipe/p_context.h"
142 st_create_texture_sampler_view_from_stobj(struct pipe_context *pipe, argument
164 return pipe->create_sampler_view(pipe, stObj->pt, &templ);
170 struct pipe_context *pipe,
180 st_create_texture_sampler_view_from_stobj(pipe, stObj, samp, format);
192 struct pipe_context *pipe = st->pipe; local
210 retval = st_finalize_texture(ctx, st->pipe, texObj);
250 *sampler_view = st_get_texture_sampler_view_from_stobj(stObj, pipe,
169 st_get_texture_sampler_view_from_stobj(struct st_texture_object *stObj, struct pipe_context *pipe, const struct gl_sampler_object *samp, enum pipe_format format) argument
[all...]
H A Dst_cb_bitmap.c49 #include "pipe/p_context.h"
50 #include "pipe/p_defines.h"
51 #include "pipe/p_shader_tokens.h"
289 struct pipe_context *pipe = st->pipe; local
311 transfer = pipe_get_transfer(st->pipe, pt, 0, 0,
315 dest = pipe_transfer_map(pipe, transfer);
325 pipe_transfer_unmap(pipe, transfer);
326 pipe->transfer_destroy(pipe, transfe
414 struct pipe_context *pipe = st->pipe; local
559 struct pipe_context *pipe = st->pipe; local
612 struct pipe_context *pipe = st->pipe; local
641 struct pipe_context *pipe = st->pipe; local
817 struct pipe_context *pipe = st->pipe; local
868 struct pipe_context *pipe = st->pipe; local
[all...]
H A Dst_cb_bufferobjects.c42 #include "pipe/p_context.h"
43 #include "pipe/p_defines.h"
129 pipe_buffer_write(st_context(ctx)->pipe,
159 pipe_buffer_read(st_context(ctx)->pipe, st_obj->buffer,
180 struct pipe_context *pipe = st->pipe; local
228 st_obj->buffer = pipe_buffer_create(pipe->screen, bind,
238 pipe_buffer_write(pipe, st_obj->buffer, 0, size, data);
254 struct pipe_context *pipe = st_context(ctx)->pipe; local
311 struct pipe_context *pipe = st_context(ctx)->pipe; local
334 struct pipe_context *pipe = st_context(ctx)->pipe; local
358 struct pipe_context *pipe = st_context(ctx)->pipe; local
[all...]
H A Dst_cb_clear.c49 #include "pipe/p_context.h"
50 #include "pipe/p_shader_tokens.h"
51 #include "pipe/p_state.h"
52 #include "pipe/p_defines.h"
68 struct pipe_screen *pscreen = st->pipe->screen;
102 st->clear.fs = util_make_fragment_passthrough_shader(st->pipe);
122 st->clear.vs = util_make_vertex_passthrough_shader(st->pipe, 2,
140 struct pipe_context *pipe = st->pipe; local
176 util_draw_vertex_buffer(pipe,
[all...]
H A Dst_cb_condrender.c39 #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, NUL
[all...]
H A Dst_cb_drawpixels.c62 #include "pipe/p_context.h"
63 #include "pipe/p_defines.h"
130 st_create_texture_sampler_view(st->pipe,
325 ureg_create_shader_and_destroy( ureg, st->pipe );
485 struct pipe_context *pipe = st->pipe; local
521 transfer = pipe_get_transfer(st->pipe, pt, 0, 0,
526 dest = pipe_transfer_map(pipe, transfer);
544 pipe_transfer_unmap(pipe, transfer);
545 pipe
571 struct pipe_context *pipe = st->pipe; local
666 struct pipe_context *pipe = st->pipe; local
835 struct pipe_context *pipe = st->pipe; local
1068 clamp_size(struct pipe_context *pipe, GLsizei *width, GLsizei *height, struct gl_pixelstore_attrib *unpack) argument
1098 struct pipe_context *pipe = st->pipe; local
1210 struct pipe_context *pipe = st_context(ctx)->pipe; local
1337 struct pipe_context *pipe = st->pipe; local
1420 struct pipe_context *pipe = st->pipe; local
[all...]

Completed in 345 milliseconds

1234567891011>>