Searched refs:entry (Results 76 - 100 of 1629) sorted by relevance

1234567891011>>

/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_x509_cl/lib/
H A DAppleX509CLSession.cpp59 CLCachedEntry *entry = cacheMap.lookupEntry(handle); local
60 if(entry != NULL) {
65 return dynamic_cast<CLCachedCert *>(entry);
75 CLCachedEntry *entry = cacheMap.lookupEntry(handle); local
76 if(entry != NULL) {
81 return dynamic_cast<CLCachedCRL *>(entry);
/macosx-10.10/libarchive-30/libarchive/libarchive/
H A Darchive_entry_strmode.c40 archive_entry_strmode(struct archive_entry *entry) argument
44 char *bp = entry->strmode;
51 mode = archive_entry_mode(entry);
52 switch (archive_entry_filetype(entry)) {
61 if (archive_entry_hardlink(entry) != NULL) {
83 if (archive_entry_acl_count(entry, ARCHIVE_ENTRY_ACL_TYPE_ACCESS))
/macosx-10.10/libarchive-30/libarchive/examples/
H A Dtarfilter.c46 struct archive_entry *entry; local
70 /* Examine each entry in the input archive. */
71 while ((r = archive_read_next_header(ina, &entry)) == ARCHIVE_OK) {
72 fprintf(stderr, "%s: ", archive_entry_pathname(entry));
75 if (!S_ISREG(archive_entry_mode(entry))) {
81 archive_entry_set_uid(entry, 0);
82 archive_entry_set_uname(entry, "root");
83 archive_entry_set_gid(entry, 0);
84 archive_entry_set_gname(entry, "wheel");
87 m = archive_entry_mode(entry);
[all...]
/macosx-10.10/libstdcxx-104.1/include/c++/4.2.1/ext/pb_ds/detail/binary_heap_/
H A Dentry_cmp.hpp75 entry; typedef in struct:pb_ds::detail::entry_cmp
89 operator()(entry p_lhs, entry p_rhs) const
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/bind/tuple/
H A DBooleanBinding.java51 * Converts an entry buffer into a simple <code>boolean</code> value.
53 * @param entry is the source entry buffer.
57 public static boolean entryToBoolean(DatabaseEntry entry) { argument
59 return entryToInput(entry).readBoolean();
63 * Converts a simple <code>boolean</code> value into an entry buffer.
67 * @param entry is the destination entry buffer.
69 public static void booleanToEntry(boolean val, DatabaseEntry entry) { argument
71 outputToEntry(sizedOutput().writeBoolean(val), entry);
[all...]
H A DByteBinding.java51 * Converts an entry buffer into a simple <code>byte</code> value.
53 * @param entry is the source entry buffer.
57 public static byte entryToByte(DatabaseEntry entry) { argument
59 return entryToInput(entry).readByte();
63 * Converts a simple <code>byte</code> value into an entry buffer.
67 * @param entry is the destination entry buffer.
69 public static void byteToEntry(byte val, DatabaseEntry entry) { argument
71 outputToEntry(sizedOutput().writeByte(val), entry);
[all...]
H A DCharacterBinding.java51 * Converts an entry buffer into a simple <code>char</code> value.
53 * @param entry is the source entry buffer.
57 public static char entryToChar(DatabaseEntry entry) { argument
59 return entryToInput(entry).readChar();
63 * Converts a simple <code>char</code> value into an entry buffer.
67 * @param entry is the destination entry buffer.
69 public static void charToEntry(char val, DatabaseEntry entry) { argument
71 outputToEntry(sizedOutput().writeChar(val), entry);
[all...]
H A DDoubleBinding.java56 * Converts an entry buffer into a simple <code>double</code> value.
58 * @param entry is the source entry buffer.
62 public static double entryToDouble(DatabaseEntry entry) { argument
64 return entryToInput(entry).readDouble();
68 * Converts a simple <code>double</code> value into an entry buffer.
72 * @param entry is the destination entry buffer.
74 public static void doubleToEntry(double val, DatabaseEntry entry) { argument
76 outputToEntry(sizedOutput().writeDouble(val), entry);
[all...]
H A DFloatBinding.java56 * Converts an entry buffer into a simple <code>float</code> value.
58 * @param entry is the source entry buffer.
62 public static float entryToFloat(DatabaseEntry entry) { argument
64 return entryToInput(entry).readFloat();
68 * Converts a simple <code>float</code> value into an entry buffer.
72 * @param entry is the destination entry buffer.
74 public static void floatToEntry(float val, DatabaseEntry entry) { argument
76 outputToEntry(sizedOutput().writeFloat(val), entry);
[all...]
H A DIntegerBinding.java51 * Converts an entry buffer into a simple <code>int</code> value.
53 * @param entry is the source entry buffer.
57 public static int entryToInt(DatabaseEntry entry) { argument
59 return entryToInput(entry).readInt();
63 * Converts a simple <code>int</code> value into an entry buffer.
67 * @param entry is the destination entry buffer.
69 public static void intToEntry(int val, DatabaseEntry entry) { argument
71 outputToEntry(sizedOutput().writeInt(val), entry);
[all...]
H A DLongBinding.java51 * Converts an entry buffer into a simple <code>long</code> value.
53 * @param entry is the source entry buffer.
57 public static long entryToLong(DatabaseEntry entry) { argument
59 return entryToInput(entry).readLong();
63 * Converts a simple <code>long</code> value into an entry buffer.
67 * @param entry is the destination entry buffer.
69 public static void longToEntry(long val, DatabaseEntry entry) { argument
71 outputToEntry(sizedOutput().writeLong(val), entry);
[all...]
H A DShortBinding.java51 * Converts an entry buffer into a simple <code>short</code> value.
53 * @param entry is the source entry buffer.
57 public static short entryToShort(DatabaseEntry entry) { argument
59 return entryToInput(entry).readShort();
63 * Converts a simple <code>short</code> value into an entry buffer.
67 * @param entry is the destination entry buffer.
69 public static void shortToEntry(short val, DatabaseEntry entry) { argument
71 outputToEntry(sizedOutput().writeShort(val), entry);
[all...]
H A DSortedDoubleBinding.java62 * Converts an entry buffer into a simple <code>double</code> value.
64 * @param entry is the source entry buffer.
68 public static double entryToDouble(DatabaseEntry entry) { argument
70 return entryToInput(entry).readSortedDouble();
74 * Converts a simple <code>double</code> value into an entry buffer.
78 * @param entry is the destination entry buffer.
80 public static void doubleToEntry(double val, DatabaseEntry entry) { argument
83 entry);
[all...]
H A DSortedFloatBinding.java62 * Converts an entry buffer into a simple <code>float</code> value.
64 * @param entry is the source entry buffer.
68 public static float entryToFloat(DatabaseEntry entry) { argument
70 return entryToInput(entry).readSortedFloat();
74 * Converts a simple <code>float</code> value into an entry buffer.
78 * @param entry is the destination entry buffer.
80 public static void floatToEntry(float val, DatabaseEntry entry) { argument
82 outputToEntry(FloatBinding.sizedOutput().writeSortedFloat(val), entry);
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/bind/tuple/test/
H A DTupleBindingTest.java179 DatabaseEntry entry = new DatabaseEntry();
181 StringBinding.stringToEntry("abc", entry);
182 assertEquals(4, entry.getData().length);
183 assertEquals("abc", StringBinding.entryToString(entry));
185 new StringBinding().objectToEntry("abc", entry);
186 assertEquals(4, entry.getData().length);
188 StringBinding.stringToEntry(null, entry);
189 assertEquals(2, entry.getData().length);
190 assertEquals(null, StringBinding.entryToString(entry));
192 new StringBinding().objectToEntry(null, entry);
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DLookup.cpp50 bool setUpStaticFunctionSlot(ExecState* exec, const HashTableValue* entry, JSObject* thisObj, PropertyName propertyName, PropertySlot& slot) argument
53 ASSERT(entry->attributes() & BuiltinOrFunction);
64 if (entry->attributes() & Builtin)
65 thisObj->putDirectBuiltinFunction(vm, thisObj->globalObject(), propertyName, entry->builtinGenerator()(vm), entry->attributes());
68 vm, thisObj->globalObject(), propertyName, entry->functionLength(),
69 entry->function(), entry->intrinsic(), entry->attributes());
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/examples/
H A Dmain.cpp44 LDAPEntry* entry=new LDAPEntry( local
46 // lc->add(entry);
53 LDAPEntry* entry = entries->getNext(); local
54 if(entry != 0){
55 std::cout << *(entry) << std::endl;
57 while(entry){
59 entry = entries->getNext();
60 if(entry != 0){
61 std::cout << *(entry) << std::endl;
63 delete entry;
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DIndexedDatabaseEntryDataGridNode.js26 WebInspector.IndexedDatabaseEntryDataGridNode = function(entry)
28 WebInspector.DataGridNode.call(this, entry);
30 this._entry = entry;
39 get entry()
/macosx-10.10/bash-94.1.2/bash-3.2/lib/tilde/
H A Dshell.c63 struct passwd *entry; local
66 entry = getpwuid (getuid ());
67 if (entry)
68 home_dir = entry->pw_dir;
/macosx-10.10/dtrace-147/test/tst/common/docsExamples/
H A Drwtime.d38 syscall::read:entry,
39 syscall::write:entry
H A Dtruss.d45 syscall::read:entry
51 syscall::write:entry
H A Dtrussrw.d40 syscall::read:entry,
41 syscall::write:entry
/macosx-10.10/dtrace-147/test/tst/common/drops/
H A Ddrp.DTRACEDROP_STKSTROVERFLOW.d41 syscall:::entry
46 fbt::exit:entry
/macosx-10.10/dtrace-147/test/tst/common/fbtprovider/
H A Dtst.tailcall.d39 fbt::sigprocmask:entry
44 fbt:::entry
/macosx-10.10/dtrace-147/test/tst/common/raise/
H A Dtst.raise1.d46 syscall::geteuid:entry
57 syscall::exit:entry

Completed in 190 milliseconds

1234567891011>>