Lines Matching refs:socklen
4259 int socklen; in test_accept() local
4268 socklen = sizeof(address); in test_accept()
4269 server_socket = setup_server_socket(&address, &socklen); in test_accept()
4276 connector = setup_connector_socket(&address, socklen, FALSE); in test_accept()
4319 socklen = sizeof(address); in test_accept()
4320 server_socket = setup_server_socket(&address, &socklen); in test_accept()
4323 connector = setup_connector_socket(&address, socklen, FALSE); in test_accept()
4326 socklen = 0; in test_accept()
4327 accepted = WSAAccept(server_socket, (struct sockaddr *)&ss, &socklen, NULL, 0); in test_accept()
4329 ok(!socklen, "got %d\n", socklen); in test_accept()
4333 socklen = sizeof(address); in test_accept()
4334 connector = setup_connector_socket(&address, socklen, FALSE); in test_accept()
4343 socklen = sizeof(address); in test_accept()
4344 connector = setup_connector_socket(&address, socklen, FALSE); in test_accept()
4347 socklen = sizeof(ss); in test_accept()
4349 accepted = WSAAccept(server_socket, (struct sockaddr *)&ss, &socklen, NULL, 0); in test_accept()
4351 ok(socklen != sizeof(ss), "unexpected length\n"); in test_accept()
4357 socklen = sizeof(address); in test_accept()
4358 connector = setup_connector_socket(&address, socklen, FALSE); in test_accept()
4361 socklen = 0; in test_accept()
4362 accepted = accept(server_socket, (struct sockaddr *)&ss, &socklen); in test_accept()
4364 ok(!socklen, "got %d\n", socklen); in test_accept()
4368 socklen = sizeof(address); in test_accept()
4369 connector = setup_connector_socket(&address, socklen, FALSE); in test_accept()
4378 socklen = sizeof(address); in test_accept()
4379 connector = setup_connector_socket(&address, socklen, FALSE); in test_accept()
4382 socklen = sizeof(ss); in test_accept()
4384 accepted = accept(server_socket, (struct sockaddr *)&ss, &socklen); in test_accept()
4386 ok(socklen != sizeof(ss), "unexpected length\n"); in test_accept()
4392 socklen = sizeof(address); in test_accept()
4393 connector = setup_connector_socket(&address, socklen, FALSE); in test_accept()
8435 int socklen, optlen; in test_AcceptEx() local
8478 socklen = sizeof(bindAddress); in test_AcceptEx()
8479 iret = getsockname(listener, (struct sockaddr*)&bindAddress, &socklen); in test_AcceptEx()
9815 int iret, socklen; in setup_iocp_src() local
9834 socklen = sizeof(*bindAddress); in setup_iocp_src()
9835 iret = getsockname(src, (struct sockaddr*)bindAddress, &socklen); in setup_iocp_src()