Home
last modified time | relevance | path

Searched refs:msg_count (Results 1 – 25 of 27) sorted by relevance

12

/external/ltp/utils/sctp/func_tests/
Dtest_1_to_1_sendto.c64 int msg_count; in main() local
110 msg_count = strlen(message) + 1; in main()
113 count = sendto(sk, message, msg_count, flag, in main()
115 if (count != msg_count) in main()
121 test_recv(acpt_sk, message_rcv, msg_count, flag); in main()
126 count = sendto(acpt_sk, message, msg_count, flag, in main()
128 if (count != msg_count) in main()
134 test_recv(sk, message_rcv, msg_count, flag); in main()
143 count = sendto(sk1, message, msg_count, flag, in main()
145 if (count != msg_count) in main()
[all …]
Dtest_1_to_1_recvfrom.c67 int msg_count; in main() local
115 msg_count = (strlen(message) + 1); in main()
119 count = test_send(sk, message, msg_count, flag); in main()
122 count = recvfrom(-1, message_rcv, msg_count, flag, in main()
136 count = recvfrom(fd, message_rcv, msg_count, flag, in main()
149 count = recvfrom(acpt_sk, (char *)-1, msg_count, flag, in main()
158 count = recvfrom(lstn_sk, message_rcv, msg_count, flag, in main()
166 count = test_send(acpt_sk, message, msg_count, flag); in main()
171 count = recvfrom(acpt_sk, message_rcv, msg_count, flag, in main()
182 count = recvfrom(sk, message_rcv, msg_count, flag, in main()
[all …]
Dtest_1_to_1_send.c69 int msg_count; in main() local
204 msg_count = strlen(message) + 1; in main()
207 count = send(sk, message, msg_count, flag); in main()
208 if (count != msg_count) in main()
214 test_recv(acpt_sk, message_rcv, msg_count, flag); in main()
219 count = send(acpt_sk, message, msg_count, flag); in main()
220 if (count != msg_count) in main()
226 test_recv(sk, message_rcv, msg_count, flag); in main()
Dtest_1_to_1_sendmsg.c76 int msg_count; in main() local
318 msg_count = strlen(message) + 1; in main()
322 if (count != msg_count) in main()
329 test_check_msg_data(&inmessage, count, msg_count, MSG_EOR, 0, 0); in main()
335 if (count != msg_count) in main()
342 test_check_msg_data(&inmessage, count, msg_count, MSG_EOR, 0, 0); in main()
353 if (count != msg_count) in main()
362 test_check_msg_data(&inmessage, count, msg_count, MSG_EOR, 0, 0); in main()
368 if (count != msg_count) in main()
375 test_check_msg_data(&inmessage, count, msg_count, MSG_EOR, 0, 0); in main()
Dtest_1_to_1_nonblock.c67 int error,msg_count; in main() local
191 msg_count = strlen(message) + 1; in main()
201 test_sendmsg(acpt_sk, &outmessage, flag, msg_count); in main()
205 test_check_msg_data(&inmessage, error, msg_count, MSG_EOR, 0, 0); in main()
Dtest_1_to_1_addrs.c89 int msg_count; in main() local
149 msg_count = strlen(message) + 1; in main()
169 outmessage.msg_iov->iov_len = msg_count; in main()
171 test_sendmsg(clnt_sk, &outmessage, MSG_NOSIGNAL, msg_count); in main()
/external/grpc-grpc/examples/ruby/pubsub/
Dpubsub_demo.rb136 msg_count = rand(10..30)
137 msg_count.times do |x|
141 p "Sent #{msg_count} messages to #{topic_name}, checking for them now."
143 max_events: msg_count))
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/
Ddef.c104 int msg_count; member
804 return f->msg_count; in upb_filedef_msgcount()
820 return i < 0 || i >= f->msg_count ? NULL : &f->msgs[i]; in upb_filedef_msg()
1790 m = (upb_msgdef*)&ctx->file->msgs[ctx->file->msg_count++]; in create_msgdef()
1854 file->msg_count++; in count_types_in_msg()
1948 file->msgs = symtab_alloc(ctx, sizeof(*file->msgs) * file->msg_count); in build_filedef()
1953 file->msg_count = 0; in build_filedef()
2046 for (i = 0; i < (size_t)file->msg_count; i++) { in build_filedef()
2055 for (i = 0; i < (size_t)file->msg_count; i++) { in build_filedef()
2065 for (i = 0; i < file->msg_count; i++) { in remove_filedef()
[all …]
/external/trace-cmd/lib/trace-cmd/
Dtrace-timesync-ptp.c537 int msg_count; in ptp_clock_server() local
581 msg_count = htonl(marker.data.count); in ptp_clock_server()
585 sizeof(msg_count), in ptp_clock_server()
586 (char *)&msg_count); in ptp_clock_server()
/external/ipsec-tools/src/racoon/
Disakmp_xauth.c579 PAM_conv(msg_count, msg, rsp, dontcare) in PAM_conv() argument
580 int msg_count; in PAM_conv()
589 if ((reply = racoon_malloc(sizeof(*reply) * msg_count)) == NULL)
591 bzero(reply, sizeof(*reply) * msg_count);
593 for (i = 0; i < msg_count; i++) {
/external/libchrome/ipc/
Dipc_mojo_perftest.cc55 void SetTestParams(int msg_count, size_t msg_size, bool sync) { in SetTestParams() argument
57 msg_count_ = msg_count; in SetTestParams()
/external/cronet/ipc/
Dipc_mojo_perftest.cc66 void SetTestParams(int msg_count, size_t msg_size, bool sync) { in SetTestParams() argument
68 msg_count_ = msg_count; in SetTestParams()
/external/protobuf/ruby/ext/google/protobuf_c/
Druby-upb.c6402 int msg_count; /* Count of messages built so far. */ member
7761 UPB_ASSERT(ctx->msg_count < ctx->layout->msg_count); in create_msgdef()
7762 m->layout = ctx->layout->msgs[ctx->msg_count++]; in create_msgdef()
8245 ctx.msg_count = 0; in _upb_DefPool_AddFile()
Druby-upb.h1309 int msg_count; member
/external/cronet/third_party/protobuf/ruby/ext/google/protobuf_c/
Druby-upb.c6402 int msg_count; /* Count of messages built so far. */ member
7761 UPB_ASSERT(ctx->msg_count < ctx->layout->msg_count); in create_msgdef()
7762 m->layout = ctx->layout->msgs[ctx->msg_count++]; in create_msgdef()
8245 ctx.msg_count = 0; in _upb_DefPool_AddFile()
Druby-upb.h1309 int msg_count; member
/external/cronet/third_party/protobuf/php/ext/google/protobuf/
Dphp-upb.c6697 int msg_count; /* Count of messages built so far. */ member
8051 UPB_ASSERT(ctx->msg_count < ctx->layout->msg_count); in create_msgdef()
8052 m->layout = ctx->layout->msgs[ctx->msg_count++]; in create_msgdef()
8535 ctx.msg_count = 0; in _upb_DefPool_AddFile()
Dphp-upb.h1275 int msg_count; member
/external/protobuf/php/ext/google/protobuf/
Dphp-upb.c6697 int msg_count; /* Count of messages built so far. */ member
8051 UPB_ASSERT(ctx->msg_count < ctx->layout->msg_count); in create_msgdef()
8052 m->layout = ctx->layout->msgs[ctx->msg_count++]; in create_msgdef()
8535 ctx.msg_count = 0; in _upb_DefPool_AddFile()
Dphp-upb.h1275 int msg_count; member
/external/libbpf/.github/actions/build-selftests/
Dvmlinux.h63547 unsigned int msg_count; member
/external/bcc/libbpf-tools/powerpc/
Dvmlinux_510.h108109 unsigned int msg_count; member
Dvmlinux.h108109 unsigned int msg_count; member
/external/bcc/libbpf-tools/arm64/
Dvmlinux.h70570 unsigned int msg_count; member
Dvmlinux_510.h70570 unsigned int msg_count; member

12