sent             1264 ext/ftp/ftp.c  	zend_long		size, sent;
sent             1302 ext/ftp/ftp.c  				sent = SSL_write(handle, buf, size);
sent             1303 ext/ftp/ftp.c  				err = SSL_get_error(handle, sent);
sent             1337 ext/ftp/ftp.c  			sent = send(s, buf, size, 0);
sent             1341 ext/ftp/ftp.c  		if (sent == -1) {
sent             1345 ext/ftp/ftp.c  		buf = (char*) buf + sent;
sent             1346 ext/ftp/ftp.c  		size -= sent;
sent              653 ext/mysqlnd/mysqlnd_wireprotocol.c 		size_t sent = conn->net->data->m.send_ex(conn->net, buffer, p - buffer - MYSQLND_HEADER_SIZE, conn->stats, conn->error_info);
sent              654 ext/mysqlnd/mysqlnd_wireprotocol.c 		if (!sent) {
sent              657 ext/mysqlnd/mysqlnd_wireprotocol.c 		DBG_RETURN(sent);
sent              813 ext/mysqlnd/mysqlnd_wireprotocol.c 		size_t sent = conn->net->data->m.send_ex(conn->net, buffer, p - buffer - MYSQLND_HEADER_SIZE, conn->stats, conn->error_info);
sent              817 ext/mysqlnd/mysqlnd_wireprotocol.c 		if (!sent) {
sent              820 ext/mysqlnd/mysqlnd_wireprotocol.c 		DBG_RETURN(sent);
sent             1011 ext/mysqlnd/mysqlnd_wireprotocol.c 	size_t sent = 0;
sent             1035 ext/mysqlnd/mysqlnd_wireprotocol.c 		sent = net->data->m.send_ex(net, buffer, 1, conn->stats, conn->error_info);
sent             1050 ext/mysqlnd/mysqlnd_wireprotocol.c 		sent = net->data->m.send_ex(net, tmp, tmp_len - MYSQLND_HEADER_SIZE, conn->stats, conn->error_info);
sent             1061 ext/mysqlnd/mysqlnd_wireprotocol.c 	if (!sent) {
sent             1064 ext/mysqlnd/mysqlnd_wireprotocol.c 	DBG_RETURN(sent);
sent             2129 ext/mysqlnd/mysqlnd_wireprotocol.c 	size_t sent;
sent             2134 ext/mysqlnd/mysqlnd_wireprotocol.c 	sent = conn->net->data->m.send_ex(conn->net, buffer, 1, conn->stats, conn->error_info);
sent             2136 ext/mysqlnd/mysqlnd_wireprotocol.c 	DBG_RETURN(sent);
sent               64 ext/sockets/sendrecvmsg.c 	DWORD sent = 0;
sent               65 ext/sockets/sendrecvmsg.c 	return WSASendMsg((SOCKET)sockfd, (struct msghdr*)msg, (DWORD)flags, &sent, NULL, NULL) == 0
sent               66 ext/sockets/sendrecvmsg.c 		? (ssize_t)sent
sent              163 sapi/phpdbg/phpdbg_io.c 	int sent, i = len;
sent              167 sapi/phpdbg/phpdbg_io.c 		sent = send(sock, p, i, 0);
sent              168 sapi/phpdbg/phpdbg_io.c 		if (sent == -1) {
sent              171 sapi/phpdbg/phpdbg_io.c 		i -= sent;
sent              172 sapi/phpdbg/phpdbg_io.c 		p += sent;