Lines Matching refs:image
326 NSImage image;
339 static const char e_static[] = T("image statically linked");
367 NSObjectFileImage image;
390 switch (NSCreateObjectFileImageFromFile(path, &image))
393 dll->module = NSLinkModule(image, path, (mode & RTLD_LAZY) ? 0 : NSLINKMODULE_OPTION_BINDNOW);
394 NSDestroyObjectFileImage(image);
402 dll->image = NSAddImage(path, 0);
403 if (!dll->image)
448 else if (dll->image)
450 if (!NSIsSymbolNameDefinedInImage(dll->image, name))
452 address = NSLookupSymbolInImage(dll->image, name, 0);
471 if (!dll || dll != DL_NEXT && (dll->magic != DL_MAGIC || !dll->image && !dll->module))