Lines Matching refs:chall
118 -(void)setUpForChallenge:(NSURLAuthenticationChallenge *)chall
122 NSURLProtectionSpace *space = [chall protectionSpace];
141 if ([chall previousFailureCount] == 0) {
210 if ([[chall proposedCredential] user] != nil) {
211 [username setStringValue:[[chall proposedCredential] user]];
220 - (void)runAsModalDialogWithChallenge:(NSURLAuthenticationChallenge *)chall
222 [self setUpForChallenge:chall];
225 [chall retain];
232 [callback performSelector:selector withObject:chall withObject:credential];
234 [chall release];
237 - (void)runAsSheetOnWindow:(NSWindow *)window withChallenge:(NSURLAuthenticationChallenge *)chall
241 [self setUpForChallenge:chall];
244 challenge = [chall retain];
252 NSURLAuthenticationChallenge *chall;
263 chall = challenge;
265 [callback performSelector:selector withObject:chall withObject:credential];
267 [chall release];