/external/ltp/utils/sctp/func_tests/ |
D | test_1_to_1_sendto.c | 64 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 …]
|
D | test_1_to_1_recvfrom.c | 67 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 …]
|
D | test_1_to_1_send.c | 69 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()
|
D | test_1_to_1_sendmsg.c | 76 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()
|
D | test_1_to_1_nonblock.c | 67 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()
|
D | test_1_to_1_addrs.c | 89 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/ |
D | pubsub_demo.rb | 136 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/ |
D | def.c | 104 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/ |
D | trace-timesync-ptp.c | 537 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/ |
D | isakmp_xauth.c | 579 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/ |
D | ipc_mojo_perftest.cc | 55 void SetTestParams(int msg_count, size_t msg_size, bool sync) { in SetTestParams() argument 57 msg_count_ = msg_count; in SetTestParams()
|
/external/cronet/ipc/ |
D | ipc_mojo_perftest.cc | 66 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/ |
D | ruby-upb.c | 6402 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()
|
D | ruby-upb.h | 1309 int msg_count; member
|
/external/cronet/third_party/protobuf/ruby/ext/google/protobuf_c/ |
D | ruby-upb.c | 6402 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()
|
D | ruby-upb.h | 1309 int msg_count; member
|
/external/cronet/third_party/protobuf/php/ext/google/protobuf/ |
D | php-upb.c | 6697 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()
|
D | php-upb.h | 1275 int msg_count; member
|
/external/protobuf/php/ext/google/protobuf/ |
D | php-upb.c | 6697 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()
|
D | php-upb.h | 1275 int msg_count; member
|
/external/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 63547 unsigned int msg_count; member
|
/external/bcc/libbpf-tools/powerpc/ |
D | vmlinux_510.h | 108109 unsigned int msg_count; member
|
D | vmlinux.h | 108109 unsigned int msg_count; member
|
/external/bcc/libbpf-tools/arm64/ |
D | vmlinux.h | 70570 unsigned int msg_count; member
|
D | vmlinux_510.h | 70570 unsigned int msg_count; member
|