Searched refs:Universal (Results 1 - 25 of 36) sorted by relevance

12

/macosx-10.10/Security-57031.1.35/Security/include/security_codesigning/
H A Dmachorep.cpp43 // Universal object (which will usually deliver the "native" architecture later).
50 mExecutable = new Universal(fd(), (size_t)ctx->offset, ctx->size);
52 auto_ptr<Universal> full(new Universal(fd()));
53 mExecutable = new Universal(fd(), full->archOffset(ctx->arch), full->archLength(ctx->arch));
55 mExecutable = new Universal(fd());
57 mExecutable = new Universal(fd());
75 switch (Universal::typeOf(fd)) {
95 Universal *MachORep::mainExecutableImage()
229 if (Universal *fa
[all...]
H A Dmachorep.h55 Universal *mainExecutableImage();
83 Universal *mExecutable; // cached Mach-O/Universal reference to mainExecutablePath()
H A Dsignerutils.h84 ArchEditor(Universal &fat, CodeDirectory::HashAlgorithm hashType, uint32_t attrs);
131 BlobEditor(Universal &fat, SecCodeSigner::Signer &s);
154 MachOEditor(DiskRep::Writer *w, Universal &code, CodeDirectory::HashAlgorithm hashType, std::string srcPath);
173 Universal *mNewCode;
H A Dsignerutils.cpp79 ArchEditor::ArchEditor(Universal &code, CodeDirectory::HashAlgorithm hashType, uint32_t attrs)
82 Universal::Architectures archList;
84 for (Universal::Architectures::const_iterator it = archList.begin();
100 BlobEditor::BlobEditor(Universal &fat, SecCodeSigner::Signer &s)
133 MachOEditor::MachOEditor(DiskRep::Writer *w, Universal &code, CodeDirectory::HashAlgorithm hashType, std::string srcPath)
176 // open the new (temporary) Universal file
181 mNewCode = new Universal(mFd);
274 // Note that the Universal object returned by allocate() is still open
H A Ddetachedrep.cpp53 if (Universal *fat = orig->mainExecutableImage())
H A Dsigner.h66 void signMachO(Universal *fat, const Requirement::Context &context); // sign a Mach-O binary
H A Dbundlediskrep.h63 Universal *mainExecutableImage();
H A Ddiskrep.h68 virtual Universal *mainExecutableImage(); // Mach-O image if Mach-O based [null]
207 Universal *mainExecutableImage() { return mOriginal->mainExecutableImage(); }
H A Ddiskrep.cpp141 // the file of the actual architecture desired (of a Universal file),
182 Universal *DiskRep::mainExecutableImage()
H A Dsigner.cpp83 if (Universal *fat = state.mNoMachO ? NULL : rep->mainExecutableImage()) {
101 if (Universal *fat = state.mNoMachO ? NULL : rep->mainExecutableImage()) {
392 // interpretation is courtesy of the Universal/MachO support classes.
394 void SecCodeSigner::Signer::signMachO(Universal *fat, const Requirement::Context &context)
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dmachorep.cpp43 // Universal object (which will usually deliver the "native" architecture later).
50 mExecutable = new Universal(fd(), (size_t)ctx->offset, ctx->size);
52 auto_ptr<Universal> full(new Universal(fd()));
53 mExecutable = new Universal(fd(), full->archOffset(ctx->arch), full->archLength(ctx->arch));
55 mExecutable = new Universal(fd());
57 mExecutable = new Universal(fd());
75 switch (Universal::typeOf(fd)) {
95 Universal *MachORep::mainExecutableImage()
229 if (Universal *fa
[all...]
H A Dmachorep.h55 Universal *mainExecutableImage();
83 Universal *mExecutable; // cached Mach-O/Universal reference to mainExecutablePath()
H A Dsignerutils.h84 ArchEditor(Universal &fat, CodeDirectory::HashAlgorithm hashType, uint32_t attrs);
131 BlobEditor(Universal &fat, SecCodeSigner::Signer &s);
154 MachOEditor(DiskRep::Writer *w, Universal &code, CodeDirectory::HashAlgorithm hashType, std::string srcPath);
173 Universal *mNewCode;
H A Dsignerutils.cpp79 ArchEditor::ArchEditor(Universal &code, CodeDirectory::HashAlgorithm hashType, uint32_t attrs)
82 Universal::Architectures archList;
84 for (Universal::Architectures::const_iterator it = archList.begin();
100 BlobEditor::BlobEditor(Universal &fat, SecCodeSigner::Signer &s)
133 MachOEditor::MachOEditor(DiskRep::Writer *w, Universal &code, CodeDirectory::HashAlgorithm hashType, std::string srcPath)
176 // open the new (temporary) Universal file
181 mNewCode = new Universal(mFd);
274 // Note that the Universal object returned by allocate() is still open
H A Ddetachedrep.cpp53 if (Universal *fat = orig->mainExecutableImage())
H A Dsigner.h66 void signMachO(Universal *fat, const Requirement::Context &context); // sign a Mach-O binary
H A Dbundlediskrep.h63 Universal *mainExecutableImage();
H A Ddiskrep.h68 virtual Universal *mainExecutableImage(); // Mach-O image if Mach-O based [null]
207 Universal *mainExecutableImage() { return mOriginal->mainExecutableImage(); }
H A Ddiskrep.cpp141 // the file of the actual architecture desired (of a Universal file),
182 Universal *DiskRep::mainExecutableImage()
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dmacho++.cpp447 Universal::Universal(FileDesc fd, size_t offset /* = 0 */, size_t length /* = 0 */) function in class:Security::Universal
576 Universal::~Universal()
581 const size_t Universal::lengthOfSlice(size_t offset) const
593 MachO *Universal::architecture() const
601 size_t Universal::archOffset() const
614 MachO *Universal::architecture(const Architecture &arch) const
624 size_t Universal::archOffset(const Architecture &arch) const
634 size_t Universal
[all...]
H A Dmacho++.h184 // A Universal object represents a Mach-O binary image (whole) file.
185 // It can represent a true Universal (aka "Fat") file with multiple
187 // binary and make you believe it's a Universal with just one architecture.
189 class Universal : public UnixPlusPlus::FileDesc { class in namespace:Security
191 Universal(FileDesc fd, size_t offset = 0, size_t length = 0);
192 ~Universal();
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dmacho++.cpp447 Universal::Universal(FileDesc fd, size_t offset /* = 0 */, size_t length /* = 0 */) function in class:Security::Universal
576 Universal::~Universal()
581 const size_t Universal::lengthOfSlice(size_t offset) const
593 MachO *Universal::architecture() const
601 size_t Universal::archOffset() const
614 MachO *Universal::architecture(const Architecture &arch) const
624 size_t Universal::archOffset(const Architecture &arch) const
634 size_t Universal
[all...]
H A Dmacho++.h184 // A Universal object represents a Mach-O binary image (whole) file.
185 // It can represent a true Universal (aka "Fat") file with multiple
187 // binary and make you believe it's a Universal with just one architecture.
189 class Universal : public UnixPlusPlus::FileDesc { class in namespace:Security
191 Universal(FileDesc fd, size_t offset = 0, size_t length = 0);
192 ~Universal();
/macosx-10.10/CPANInternal-159.1/Test-use-ok-0.11/lib/
H A Dok.pm38 =head1 CC0 1.0 Universal
/macosx-10.10/CPANInternal-159.1/Test-use-ok-0.11/lib/Test/use/
H A Dok.pm43 =head1 CC0 1.0 Universal

Completed in 397 milliseconds

12