Home | History | Annotate | Download | only in Misc

Lines Matching full:error

76     if ([manager moveItemAtPath:path toPath:moveToPath error:NULL])
103 OSStatus error;
110 error = FSPathMakeRef((const UInt8 *)[posixPath fileSystemRepresentation], &ref, NULL);
111 if (error != noErr) {
116 error = FSGetCatalogInfo(&ref, kFSCatInfoVolume, &info, NULL, NULL, NULL);
117 if (error != noErr) {
122 error = FSGetVolumeInfo(info.volume, 0, NULL, kFSVolInfoNone, NULL, NULL, &rootRef);
123 if (error != noErr) {
130 error = FSGetCatalogInfo(&ref, kFSCatInfoNone, NULL, &nameString, NULL, &parentRef);
131 if (error != noErr) {
245 - (NSArray *)contentsOfDirectoryAtPath:(NSString *)path error:(NSError **)error
248 ASSERT_ARG(error, !error);
253 - (NSString *)destinationOfSymbolicLinkAtPath:(NSString *)path error:(NSError **)error
256 ASSERT_ARG(error, !error);
261 - (NSDictionary *)attributesOfFileSystemForPath:(NSString *)path error:(NSError **)error
264 ASSERT_ARG(error, !error);
269 - (NSDictionary *)attributesOfItemAtPath:(NSString *)path error:(NSError **)error
272 ASSERT_ARG(error, !error);
277 - (BOOL)moveItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath error:(NSError **)error
279 // The implementation of moveItemAtPath:toPath:error: interacts with the NSFileManager's delegate.
286 - (BOOL)removeItemAtPath:(NSString *)path error:(NSError **)error
288 // The implementation of removeItemAtPath:error: interacts with the NSFileManager's delegate.