Home
last modified time | relevance | path

Searched refs:cap_write_mq (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/capsicum-test/
H A Dmqueue.cc50 int cap_write_mq = dup(mq); variable
51 EXPECT_OK(cap_write_mq);
52 EXPECT_OK(cap_rights_limit(cap_write_mq, &r_write));
70 EXPECT_NOTCAPABLE(mq_notify_(cap_write_mq, &se));
77 EXPECT_OK(mq_timedsend_(cap_write_mq, message, strlen(message) + 1, kPriority, &ts));
86 EXPECT_NOTCAPABLE(mq_getattr_(cap_write_mq, &mqa));
90 EXPECT_NOTCAPABLE(mq_timedreceive_(cap_write_mq, buffer, mqa.mq_msgsize, &priority, &ts));
97 close(cap_write_mq);