Home
last modified time | relevance | path

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

/third_party/ltp/testcases/kernel/syscalls/ipc/msgctl/
Dmsgctl02.c18 static int msg_id = -1; variable
27 TEST(msgctl(msg_id, IPC_SET, &buf)); in verify_msgctl()
37 SAFE_MSGCTL(msg_id, IPC_STAT, &buf); in verify_msgctl()
48 SAFE_MSGCTL(msg_id, IPC_SET, &orig_buf); in verify_msgctl()
55 msg_id = SAFE_MSGGET(msgkey, IPC_CREAT | IPC_EXCL | MSG_RW | 0660); in setup()
57 SAFE_MSGCTL(msg_id, IPC_STAT, &orig_buf); in setup()
62 if (msg_id >= 0) in cleanup()
63 SAFE_MSGCTL(msg_id, IPC_RMID, NULL); in cleanup()
Dmsgctl06.c33 static int msg_id = -1; variable
146 msg_id = SAFE_MSGGET(IPC_PRIVATE, IPC_CREAT | MSG_RW); in setup()
147 SAFE_MSGSND(msg_id, "abcd", 4, 0); in setup()
149 TEST(msgctl(msg_id, MSG_STAT_ANY, &temp_buf)); in setup()
161 if (msg_id >= 0) in cleanup()
162 SAFE_MSGCTL(msg_id, IPC_RMID, NULL); in cleanup()
Dmsgctl01.c18 static int msg_id = -1; variable
30 TEST(msgctl(msg_id, IPC_STAT, &buf)); in verify_msgctl()
124 msg_id = SAFE_MSGGET(msgkey, IPC_CREAT | IPC_EXCL | MSG_RW | mode); in setup()
133 if (msg_id >= 0) in cleanup()
134 SAFE_MSGCTL(msg_id, IPC_RMID, NULL); in cleanup()
Dmsgctl04.c38 int *msg_id; member
79 TST_EXP_FAIL(tv->msgctl(*(tc[i].msg_id), tc[i].cmd, tc[i].buf), in verify_msgctl()
82 *(tc[i].msg_id), tc[i].cmd, tc[i].buf); in verify_msgctl()
Dmsgctl12.c24 int *msg_id; member
36 TEST(msgctl(*tc[i].msg_id, tc[i].cmd, tc[i].buf)); in verify_msgctl()
/third_party/musl/src/locale/
Dcatgets.c16 char *catgets (nl_catd catd, int set_id, int msg_id, const char *s) in catgets() argument
24 uint32_t msg_id_be = htobe32(msg_id); in catgets()
/third_party/mesa3d/src/mesa/main/
Derrors.h106 static GLuint msg_id = 0; \
108 _mesa_gl_debugf(ctx, &msg_id, \
Dpipelineobj.c1027 static GLuint msg_id = 0; in _mesa_validate_program_pipeline() local
1029 _mesa_gl_debugf(ctx, &msg_id, in _mesa_validate_program_pipeline()
Dfbobject.c740 static GLuint msg_id; in fbo_incomplete() local
742 _mesa_gl_debugf(ctx, &msg_id, in fbo_incomplete()
5644 static GLuint msg_id = 0; in sample_locations() local
5646 _mesa_debug_get_id(&msg_id); in sample_locations()
5649 msg_id, MESA_DEBUG_SEVERITY_HIGH, strlen(msg), msg); in sample_locations()
/third_party/python/Lib/email/
D_header_value_parser.py2058 msg_id = MsgID()
2061 msg_id.append(token)
2065 msg_id.append(ValueTerminal('<', 'msg-id-start'))
2074 msg_id.defects.append(errors.ObsoleteHeaderDefect(
2080 msg_id.append(token)
2082 msg_id.defects.append(errors.InvalidHeaderDefect(
2088 msg_id.append(ValueTerminal('>', 'msg-id-end'))
2090 return msg_id, value
2091 msg_id.append(ValueTerminal('@', 'address-at-symbol'))
2102 msg_id.defects.append(errors.ObsoleteHeaderDefect(
[all …]
/third_party/python/Lib/test/test_email/
Dtest__header_value_parser.py2592 msg_id = self._test_get_x(
2600 self.assertEqual(msg_id.token_type, 'msg-id')
2603 msg_id = self._test_get_x(
2611 self.assertEqual(msg_id.token_type, 'msg-id')
2614 msg_id = self._test_get_x(
2622 self.assertEqual(msg_id.token_type, 'msg-id')
2626 msg_id = self._test_get_x(
2636 msg_id = self._test_get_x(
2644 self.assertEqual(msg_id.token_type, 'msg-id')
2648 msg_id = parser.parse_message_id(text)
[all …]
/third_party/lwip/src/apps/snmp/
Dsnmp_msg.h110 s32_t msg_id; member
Dsnmp_msg.c359 request.request_id = request.msg_id; in snmp_receive()
833 request->msg_id = s32_value; in snmp_parse_inbound_frame()
1309 snmp_asn1_enc_s32t_cnt(request->msg_id, &tlv.value_len); in snmp_prepare_outbound_frame()
1311 OF_BUILD_EXEC(snmp_asn1_enc_s32t(pbuf_stream, tlv.value_len, request->msg_id)); in snmp_prepare_outbound_frame()
/third_party/libwebsockets/plugins/ssh-base/
Dsshd.c607 pss->msg_id = *p++; in lws_ssh_parse_plaintext()
609 switch (pss->msg_id) { in lws_ssh_parse_plaintext()
658 pss->msg_id; in lws_ssh_parse_plaintext()
810 lwsl_notice("unk msg_id %d\n", pss->msg_id); in lws_ssh_parse_plaintext()
941 switch (pss->msg_id) { in lws_ssh_parse_plaintext()
/third_party/libwebsockets/plugins/ssh-base/include/
Dlws-ssh.h534 uint8_t msg_id; member
/third_party/mesa3d/src/compiler/glsl/
Dglsl_parser_extras.cpp516 GLuint msg_id = 0; in _mesa_glsl_msg() local
538 _mesa_shader_debug(ctx, type, &msg_id, msg); in _mesa_glsl_msg()