Lines Matching defs:cbuf
3486 char *cbuf;
3500 ctx->result = recv(s->sock_fd, ctx->cbuf, (int)ctx->len, ctx->flags);
3502 ctx->result = recv(s->sock_fd, ctx->cbuf, ctx->len, ctx->flags);
3518 sock_recv_guts(PySocketSockObject *s, char* cbuf, Py_ssize_t len, int flags)
3531 ctx.cbuf = cbuf;
3652 char* cbuf;
3671 ctx->result = recvfrom(s->sock_fd, ctx->cbuf, (int)ctx->len, ctx->flags,
3674 ctx->result = recvfrom(s->sock_fd, ctx->cbuf, ctx->len, ctx->flags,
3693 sock_recvfrom_guts(PySocketSockObject *s, char* cbuf, Py_ssize_t len, int flags,
3710 ctx.cbuf = cbuf;