Lines Matching defs:block
960 * blocking and without reaching the end. The data the pointer 'block' points
965 static CURLcode ssh_statemach_act(struct Curl_easy *data, bool *block)
977 *block = 0; /* we're not blocking by default */
3036 /* we would block, we need to wait for the socket to be ready (in the
3038 *block = TRUE;
3071 static void ssh_block2waitfor(struct Curl_easy *data, bool block)
3076 if(block) {
3085 /* It didn't block or libssh2 didn't reveal in which direction, put back
3096 bool block; /* we store the status and use that to provide a ssh_getsock()
3099 result = ssh_statemach_act(data, &block);
3103 } while(!result && !*done && !block);
3104 ssh_block2waitfor(data, block);
3118 bool block;
3122 result = ssh_statemach_act(data, &block);
3147 if(block) {