Lines Matching refs:value

77 	const void* value, int length);
486 int value = op == B_SET_NONBLOCKING_IO;
487 return socket_setsockopt(socket, SOL_SOCKET, SO_NONBLOCK, &value,
850 socket_notify(net_socket* _socket, uint8 event, int32 value)
857 if ((ssize_t)socket->receive.low_water_mark > value
858 && value >= B_OK)
863 if ((ssize_t)socket->send.low_water_mark > value && value >= B_OK)
868 socket->error = value;
1003 socket_get_option(net_socket* socket, int level, int option, void* value,
1012 uint32* size = (uint32*)value;
1020 uint32* size = (uint32*)value;
1028 uint32* size = (uint32*)value;
1036 uint32* size = (uint32*)value;
1056 struct timeval* timeval = (struct timeval*)value;
1066 int32* _set = (int32*)value;
1082 int32* _set = (int32*)value;
1090 int32* _set = (int32*)value;
1098 int32* _set = (int32*)value;
1117 socket_getsockopt(net_socket* socket, int level, int option, void* value,
1121 level, option, value, _length);
1428 socket_set_option(net_socket* socket, int level, int option, const void* value,
1443 struct linger* linger = (struct linger*)value;
1458 socket->send.buffer_size = *(const uint32*)value;
1465 socket->receive.buffer_size = *(const uint32*)value;
1472 socket->send.low_water_mark = *(const uint32*)value;
1479 socket->receive.low_water_mark = *(const uint32*)value;
1488 const struct timeval* timeval = (const struct timeval*)value;
1504 if (*(const int32*)value) {
1524 if (*(const int32*)value)
1537 socket->bound_to_device = *(const uint32*)value;
1551 socket_setsockopt(net_socket* socket, int level, int option, const void* value,
1555 level, option, value, length);