Home
last modified time | relevance | path

Searched refs:ipc (Results 1 - 25 of 136) sorted by relevance

123456

/third_party/ltp/testcases/kernel/mce-test/stress/tools/page-poisoning/
H A Dpage-poisoning.c75 struct ipc { struct
357 struct ipc *ipc; in dirty_anonymous() local
360 if ((ipc = shmat(ipc_entry, 0, 0)) == (void *)-1) in dirty_anonymous()
362 ipc->test[instance].id = testid; in dirty_anonymous()
367 ipc->test[instance].result = TEST_PASS; in dirty_anonymous()
368 shmdt(ipc); in dirty_anonymous()
373 struct ipc *ipc; in dirty_anonymous_unmap() local
376 if ((ipc in dirty_anonymous_unmap()
390 struct ipc *ipc; mlocked_anonymous() local
425 struct ipc *ipc; file_clean() local
438 struct ipc *ipc; file_clean_mlocked() local
502 struct ipc *ipc; file_dirty() local
515 struct ipc *ipc; file_dirty_mlocked() local
571 struct ipc *ipc; anon_clean() local
600 struct ipc *ipc; shm_test() local
639 struct ipc *ipc; setup_ipc() local
669 struct ipc *ipc; free_ipc() local
713 struct ipc *ipc; run_test() local
[all...]
/third_party/toybox/toys/pending/
H A Dipcrm.c24 #include <sys/ipc.h>
38 static void do_ipcrm(int key, int ipc, char *name) in do_ipcrm() argument
54 id = ((ipc == 1)?shmget(id, 0, 0) : in do_ipcrm()
55 (ipc == 2)? msgget(id, 0): semget(id, 0, 0)); in do_ipcrm()
62 if (ipc == 1) ret = shmctl(id, IPC_RMID, NULL); in do_ipcrm()
63 else if (ipc == 2) ret = msgctl(id, IPC_RMID, NULL); in do_ipcrm()
64 else if (ipc == 3) ret = semctl(id, 0, IPC_RMID, NULL); in do_ipcrm()
/third_party/ffmpeg/libavcodec/
H A Dipu_parser.c37 IPUParseContext *ipc = s->priv_data; in ipu_parse() local
38 uint32_t state = ipc->pc.state; in ipu_parse()
58 ipc->pc.state = state; in ipu_parse()
59 if (ff_combine_frame(&ipc->pc, next, &buf, &buf_size) < 0) { in ipu_parse()
H A Dqoi_parser.c37 QOIParseContext *ipc = s->priv_data; in qoi_parse() local
38 uint64_t state = ipc->pc.state64; in qoi_parse()
58 ipc->pc.state64 = state; in qoi_parse()
59 if (ff_combine_frame(&ipc->pc, next, &buf, &buf_size) < 0) { in qoi_parse()
/third_party/node/src/
H A Dpipe_wrap.cc133 bool ipc; in New() local
138 ipc = false; in New()
142 ipc = false; in New()
146 ipc = true; in New()
152 new PipeWrap(env, args.This(), provider, ipc); in New()
159 bool ipc) in PipeWrap()
161 int r = uv_pipe_init(env->event_loop(), &handle_, ipc); in PipeWrap()
156 PipeWrap(Environment* env, Local<Object> object, ProviderType provider, bool ipc) PipeWrap() argument
/third_party/node/deps/uv/src/unix/
H A Dpipe.c34 int uv_pipe_init(uv_loop_t* loop, uv_pipe_t* handle, int ipc) { in uv_pipe_init() argument
39 handle->ipc = ipc; in uv_pipe_init()
116 if (handle->ipc) in uv__pipe_listen()
319 if (!handle->ipc) in uv_pipe_pending_count()
334 if (!handle->ipc) in uv_pipe_pending_type()
/third_party/node/lib/internal/
H A Dchild_process.js358 const ipc = stdio.ipc;
367 if (ipc !== undefined) {
425 if (stream.ipc) {
470 if (ipc !== undefined) setupChannel(this, ipc, serialization);
980 let ipc;
1001 if ((acc[i].type === 'pipe' || acc[i].type === 'ipc') && acc[i].handle)
1025 } else if (stdio === 'ipc') {
1026 if (sync || ipc !
[all...]
/third_party/ltp/testcases/kernel/
H A DMakefile30 ipc \
54 FILTER_OUT_DIRS += containers controllers device-drivers fs io ipc mem \
/third_party/libuv/src/unix/
H A Dpipe.c46 int uv_pipe_init(uv_loop_t* loop, uv_pipe_t* handle, int ipc) { in uv_pipe_init() argument
51 handle->ipc = ipc; in uv_pipe_init()
150 if (handle->ipc) in uv__pipe_listen()
404 if (!handle->ipc) in uv_pipe_pending_count()
419 if (!handle->ipc) in uv_pipe_pending_type()
/third_party/ltp/include/lapi/
H A Dipc.h8 #include <sys/ipc.h>
/third_party/ltp/include/
H A Dipcsem.h28 #include <sys/ipc.h>
H A Dipcshm.h29 #include <sys/ipc.h>
H A Dipcmsg.h28 #include <sys/ipc.h>
/third_party/musl/src/ipc/
H A Dftok.c1 #include <sys/ipc.h>
/third_party/musl/libc-test/src/functionalext/supplement/ipc/
H A Dftok.c16 #include <sys/ipc.h>
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
H A Dipc.h18 #include <bits/ipc.h>
/third_party/musl/porting/liteos_m/kernel/include/sys/
H A Dipc.h24 #include <bits/ipc.h>
H A Dmsg.h8 #include <sys/ipc.h>
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
H A Dipc.h24 #include <bits/ipc.h>
H A Dmsg.h8 #include <sys/ipc.h>
/third_party/musl/porting/uniproton/kernel/include/sys/
H A Dipc.h24 #include <bits/ipc.h>
H A Dmsg.h8 #include <sys/ipc.h>
/third_party/musl/include/sys/
H A Dipc.h24 #include <bits/ipc.h>
/third_party/node/deps/uv/src/win/
H A Dpipe.c106 int uv_pipe_init(uv_loop_t* loop, uv_pipe_t* handle, int ipc) { in uv_pipe_init() argument
116 handle->ipc = ipc; in uv_pipe_init()
411 if (flags & UV_NONBLOCK_PIPE || parent_pipe->ipc) { in uv__create_stdio_pipe_pair()
1057 if (server->ipc) { in uv__pipe_accept()
1128 if (handle->ipc) { in uv__pipe_listen()
1757 if (handle->ipc) { in uv__pipe_write()
2000 handle->ipc ? uv__pipe_read_ipc(loop, handle) in uv__process_pipe_read_req()
2320 if (pipe->ipc) { in uv_pipe_open()
2343 if (pipe->ipc) { in uv_pipe_open()
[all...]
/third_party/musl/porting/liteos_a/kernel/include/sys/
H A Dipc.h24 #include <bits/ipc.h>

Completed in 11 milliseconds

123456