Lines Matching defs:block
664 * blocking and without reaching the end. The data the pointer 'block' points
668 static CURLcode myssh_statemach_act(struct Curl_easy *data, bool *block)
678 *block = 0; /* we're not blocking by default */
2027 /* we would block, we need to wait for the socket to be ready (in the
2029 *block = TRUE;
2058 static void myssh_block2waitfor(struct connectdata *conn, bool block)
2062 /* If it didn't block, or nothing was returned by ssh_get_poll_flags
2066 if(block) {
2084 bool block; /* we store the status and use that to provide a ssh_getsock()
2086 CURLcode result = myssh_statemach_act(data, &block);
2089 myssh_block2waitfor(conn, block);
2102 bool block;
2106 result = myssh_statemach_act(data, &block);
2125 if(block) {