Home
last modified time | relevance | path

Searched refs:ipc (Results 1 – 25 of 122) sorted by relevance

12345

/third_party/boost/libs/log/test/run/
Dutil_ipc_object_name.cpp33 boost::log::ipc::object_name name; in BOOST_AUTO_TEST_CASE()
40 boost::log::ipc::object_name name(boost::log::ipc::object_name::global, test_object_name1); in BOOST_AUTO_TEST_CASE()
46 boost::log::ipc::object_name name1(boost::log::ipc::object_name::global, test_object_name1); in BOOST_AUTO_TEST_CASE()
47 boost::log::ipc::object_name name2 = name1; in BOOST_AUTO_TEST_CASE()
53 boost::log::ipc::object_name name1(boost::log::ipc::object_name::global, test_object_name1); in BOOST_AUTO_TEST_CASE()
55 boost::log::ipc::object_name name2 = boost::move(name1); in BOOST_AUTO_TEST_CASE()
61 boost::log::ipc::object_name name1(boost::log::ipc::object_name::global, test_object_name1); in BOOST_AUTO_TEST_CASE()
62 boost::log::ipc::object_name name2; in BOOST_AUTO_TEST_CASE()
69 boost::log::ipc::object_name name1(boost::log::ipc::object_name::global, test_object_name1); in BOOST_AUTO_TEST_CASE()
71 boost::log::ipc::object_name name2; in BOOST_AUTO_TEST_CASE()
[all …]
Dsink_text_ipc_mq_backend.cpp31 const boost::log::ipc::object_name ipc_queue_name(boost::log::ipc::object_name::session, "boost_log…
39 typedef boost::log::ipc::reliable_message_queue queue_t; in BOOST_AUTO_TEST_CASE()
/third_party/uboot/u-boot-2020.01/arch/arm/include/asm/arch-imx8/sci/
Dsci.h60 int sc_pm_set_resource_power_mode(sc_ipc_t ipc, sc_rsrc_t resource,
62 int sc_pm_get_resource_power_mode(sc_ipc_t ipc, sc_rsrc_t resource,
64 int sc_pm_set_clock_rate(sc_ipc_t ipc, sc_rsrc_t resource, sc_pm_clk_t clk,
66 int sc_pm_get_clock_rate(sc_ipc_t ipc, sc_rsrc_t resource, sc_pm_clk_t clk,
68 int sc_pm_clock_enable(sc_ipc_t ipc, sc_rsrc_t resource, sc_pm_clk_t clk,
70 int sc_pm_set_clock_parent(sc_ipc_t ipc, sc_rsrc_t resource, sc_pm_clk_t clk,
72 int sc_pm_cpu_start(sc_ipc_t ipc, sc_rsrc_t resource, sc_bool_t enable,
74 sc_bool_t sc_pm_is_partition_started(sc_ipc_t ipc, sc_rm_pt_t pt);
77 int sc_misc_set_control(sc_ipc_t ipc, sc_rsrc_t resource,
79 int sc_misc_get_control(sc_ipc_t ipc, sc_rsrc_t resource, sc_ctrl_t ctrl,
[all …]
/third_party/toybox/toys/pending/
Dipcrm.c38 static void do_ipcrm(int key, int ipc, char *name)
54 id = ((ipc == 1)?shmget(id, 0, 0) :
55 (ipc == 2)? msgget(id, 0): semget(id, 0, 0));
62 if (ipc == 1) ret = shmctl(id, IPC_RMID, NULL);
63 else if (ipc == 2) ret = msgctl(id, IPC_RMID, NULL);
64 else if (ipc == 3) ret = semctl(id, 0, IPC_RMID, NULL);
/third_party/boost/libs/log/src/posix/
Dipc_reliable_message_queue.cpp68 namespace ipc { namespace
115 boost::log::ipc::aux::interprocess_mutex m_mutex;
117 boost::log::ipc::aux::interprocess_condition_variable m_nonempty_queue;
119 boost::log::ipc::aux::interprocess_condition_variable m_nonfull_queue;
309 boost::log::ipc::aux::interprocess_mutex::auto_unlock unlock(hdr->m_mutex); in send()
346 boost::log::ipc::aux::interprocess_mutex::auto_unlock unlock(hdr->m_mutex); in try_send()
366 boost::log::ipc::aux::interprocess_mutex::auto_unlock unlock(hdr->m_mutex); in receive()
391 boost::log::ipc::aux::interprocess_mutex::auto_unlock unlock(hdr->m_mutex); in try_receive()
408 boost::log::ipc::aux::interprocess_mutex::auto_unlock unlock(hdr->m_mutex); in stop_local()
425 boost::log::ipc::aux::interprocess_mutex::auto_unlock unlock(hdr->m_mutex); in clear()
[all …]
/third_party/uboot/u-boot-2020.01/drivers/misc/imx8/
Dscu_api.c19 int sc_pm_set_clock_rate(sc_ipc_t ipc, sc_rsrc_t resource, sc_pm_clk_t clk, in sc_pm_set_clock_rate() argument
45 int sc_pm_get_clock_rate(sc_ipc_t ipc, sc_rsrc_t resource, sc_pm_clk_t clk, in sc_pm_get_clock_rate() argument
73 int sc_pm_clock_enable(sc_ipc_t ipc, sc_rsrc_t resource, sc_pm_clk_t clk, in sc_pm_clock_enable() argument
98 int sc_pm_set_clock_parent(sc_ipc_t ipc, sc_rsrc_t resource, in sc_pm_set_clock_parent() argument
122 int sc_pm_set_resource_power_mode(sc_ipc_t ipc, sc_rsrc_t resource, in sc_pm_set_resource_power_mode() argument
148 sc_bool_t sc_pm_is_partition_started(sc_ipc_t ipc, sc_rm_pt_t pt) in sc_pm_is_partition_started() argument
176 int sc_pad_set(sc_ipc_t ipc, sc_pad_t pad, u32 val) in sc_pad_set() argument
202 int sc_misc_set_control(sc_ipc_t ipc, sc_rsrc_t resource, in sc_misc_set_control() argument
229 int sc_misc_get_control(sc_ipc_t ipc, sc_rsrc_t resource, sc_ctrl_t ctrl, in sc_misc_get_control() argument
258 int sc_rm_set_master_sid(sc_ipc_t ipc, sc_rsrc_t resource, sc_rm_sid_t sid) in sc_rm_set_master_sid() argument
[all …]
/third_party/boost/libs/log/src/windows/
Dipc_reliable_message_queue.cpp62 namespace ipc { namespace
109 boost::log::ipc::aux::interprocess_mutex::shared_state m_mutex_state;
111 boost::log::ipc::aux::interprocess_condition_variable::shared_state m_nonfull_queue_state;
183 boost::log::ipc::aux::mapped_shared_memory m_shared_memory;
192 boost::log::ipc::aux::interprocess_mutex m_mutex;
194 boost::log::ipc::aux::interprocess_event m_nonempty_queue;
196 boost::log::ipc::aux::interprocess_condition_variable m_nonfull_queue;
198 boost::log::ipc::aux::auto_handle m_stop;
300 boost::log::ipc::aux::interprocess_mutex::optional_unlock unlock(m_mutex); in send()
334 boost::log::ipc::aux::interprocess_mutex::auto_unlock unlock(m_mutex); in try_send()
[all …]
/third_party/selinux/libsepol/tests/policies/test-hooks/
Dcmp_policy.conf41 class ipc
122 common ipc
289 class ipc
290 inherits ipc
293 inherits ipc
296 inherits ipc
308 inherits ipc
Dsmall-base.conf41 class ipc
122 common ipc
289 class ipc
290 inherits ipc
293 inherits ipc
296 inherits ipc
308 inherits ipc
/third_party/node/test/parallel/
Dtest-child-process-fork-ref.js42 const ipc = []; variable
46 ipc.push(msg);
56 assert.deepStrictEqual(ipc, ['1', '2']);
Dtest-child-process-fork-stdio.js26 let ipc = ''; variable
36 ipc += msg;
38 if (ipc === buf.toString()) {
/third_party/selinux/libsepol/tests/policies/test-expander/
Duser-base.conf41 class ipc
122 common ipc
289 class ipc
290 inherits ipc
293 inherits ipc
296 inherits ipc
308 inherits ipc
Drole-base.conf41 class ipc
122 common ipc
289 class ipc
290 inherits ipc
293 inherits ipc
296 inherits ipc
308 inherits ipc
Dalias-base.conf41 class ipc
122 common ipc
289 class ipc
290 inherits ipc
293 inherits ipc
296 inherits ipc
308 inherits ipc
/third_party/boost/libs/log/example/doc/
Dsinks_ipc_receiver.cpp26 typedef logging::ipc::reliable_message_queue queue_t; in main()
32 … keywords::name = logging::ipc::object_name(logging::ipc::object_name::user, "ipc_message_queue"), in main()
Dutil_ipc_reliable_mq_writer.cpp22 typedef logging::ipc::reliable_message_queue queue_t; in main()
28 … keywords::name = logging::ipc::object_name(logging::ipc::object_name::user, "ipc_message_queue"), in main()
Dsinks_ipc_logger.cpp45 typedef logging::ipc::reliable_message_queue queue_t; in main()
53 … keywords::name = logging::ipc::object_name(logging::ipc::object_name::user, "ipc_message_queue"), in main()
/third_party/selinux/libsepol/tests/policies/test-deps/
Dsmall-base.conf41 class ipc
122 common ipc
289 class ipc
290 inherits ipc
293 inherits ipc
296 inherits ipc
308 inherits ipc
Dbase-metreq.conf41 class ipc
122 common ipc
289 class ipc
290 inherits ipc
293 inherits ipc
296 inherits ipc
308 inherits ipc
Dbase-notmetreq.conf40 class ipc
121 common ipc
288 class ipc
289 inherits ipc
292 inherits ipc
303 inherits ipc
/third_party/node/src/
Dpipe_wrap.cc119 bool ipc; in New() local
124 ipc = false; in New()
128 ipc = false; in New()
132 ipc = true; in New()
138 new PipeWrap(env, args.This(), provider, ipc); in New()
145 bool ipc) in PipeWrap() argument
147 int r = uv_pipe_init(env->event_loop(), &handle_, ipc); in PipeWrap()
/third_party/gstreamer/gstplugins_bad/tests/examples/ipcpipeline/
DMakefile.in92 noinst_PROGRAMS = ipcpipeline1$(EXEEXT) ipc-play$(EXEEXT)
135 am_ipc_play_OBJECTS = ipc_play-ipc-play.$(OBJEXT)
166 am__depfiles_remade = ./$(DEPDIR)/ipc_play-ipc-play.Po \
716 ipc_play_SOURCES = ipc-play.c
764 ipc-play$(EXEEXT): $(ipc_play_OBJECTS) $(ipc_play_DEPENDENCIES) $(EXTRA_ipc_play_DEPENDENCIES)
765 @rm -f ipc-play$(EXEEXT)
778 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipc_play-ipc-play.Po@am__quote@ # am--include-mark…
811 ipc_play-ipc-play.o: ipc-play.c
812 …-MT ipc_play-ipc-play.o -MD -MP -MF $(DEPDIR)/ipc_play-ipc-play.Tpo -c -o ipc_play-ipc-play.o `tes…
813 @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ipc_play-ipc-play.Tpo $(DEPDIR)/ipc_play-ipc-pla…
[all …]
DMakefile.am2 ipc-play
8 ipc_play_SOURCES = ipc-play.c
Dmeson.build11 executable('ipc-play', 'ipc-play.c',
/third_party/selinux/libsepol/tests/policies/test-linker/
Dsmall-base.conf41 class ipc
122 common ipc
289 class ipc
290 inherits ipc
293 inherits ipc
296 inherits ipc
308 inherits ipc

12345