Lines Matching refs:status
259 OSStatus status = func(__VA_ARGS__); \
260 if (status != noErr) { \
262 av_log(h, AV_LOG_ERROR, #func ": Error %i\n", (int)status); \
295 OSStatus status = SSLHandshake(c->ssl_context);
296 if (status == errSSLServerAuthCompleted) {
320 status = errSSLWouldBlock; // so we call SSLHandshake again
323 status = errSSLXCertChainInvalid;
326 status = errSSLBadCert;
332 if (status == noErr) {
334 } else if (status != errSSLWouldBlock) {
335 av_log(h, AV_LOG_ERROR, "Unable to negotiate TLS/SSL session: %i\n", (int)status);
347 static int map_ssl_error(OSStatus status, size_t processed)
349 switch (status) {
359 return (int)status;