Searched refs:entry (Results 1 - 25 of 1629) sorted by relevance

1234567891011>>

/macosx-10.10/dtrace-147/test/tst/common/pid/
H A Derr.D_PDESC_ZERO.badproc1.d36 pidgin:::entry
H A Derr.D_PROC_BADPID.badproc2.d36 pid0:::entry
H A Derr.D_PDESC_ZERO.badlib.d36 pid$1:libbmc_sucks.so.1::entry
H A Derr.D_PROC_FUNC.badfunc.d38 pid$1:a.out:ahl_r00lz:entry
/macosx-10.10/libarchive-30/libarchive/libarchive/test/
H A Dtest_entry_strmode.c30 struct archive_entry *entry; local
32 assert((entry = archive_entry_new()) != NULL);
34 archive_entry_set_mode(entry, AE_IFREG | 0642);
35 assertEqualString(archive_entry_strmode(entry), "-rw-r---w- ");
38 archive_entry_set_mode(entry, AE_IFREG | 0644);
39 archive_entry_set_hardlink(entry, "link");
40 assertEqualString(archive_entry_strmode(entry), "-rw-r--r-- ");
42 archive_entry_set_mode(entry, 0640);
43 archive_entry_set_hardlink(entry, "link");
44 assertEqualString(archive_entry_strmode(entry), "hr
[all...]
H A Dtest_link_resolver.c30 struct archive_entry *entry, *e2; local
38 /* Create an entry with only 1 link and try to linkify it. */
39 assert(NULL != (entry = archive_entry_new()));
40 archive_entry_set_pathname(entry, "test1");
41 archive_entry_set_ino(entry, 1);
42 archive_entry_set_dev(entry, 2);
43 archive_entry_set_nlink(entry, 1);
44 archive_entry_set_size(entry, 10);
45 archive_entry_linkify(resolver, &entry, &e2);
49 assertEqualInt(10, archive_entry_size(entry));
95 struct archive_entry *entry, *e2; local
130 struct archive_entry *entry, *e2; local
[all...]
H A Dtest_pax_filename_encoding.c53 struct archive_entry *entry; local
65 * First entry in this test archive has an invalid UTF-8 sequence
70 assertEqualInt(ARCHIVE_WARN, archive_read_next_header(a, &entry));
71 assertEqualString(filename, archive_entry_pathname(entry));
73 * Second entry is identical except that it does have
78 assertEqualInt(ARCHIVE_OK, archive_read_next_header(a, &entry));
79 assertEqualString(filename, archive_entry_pathname(entry));
93 struct archive_entry *entry; local
124 assert((entry = archive_entry_new()) != NULL);
126 archive_entry_copy_pathname(entry, filenam
195 struct archive_entry *entry; local
[all...]
H A Dtest_write_format_tar_ustar.c53 struct archive_entry *entry; local
89 assert((entry = archive_entry_new()) != NULL);
90 archive_entry_set_mtime(entry, 1, 10);
91 archive_entry_set_pathname(entry, "file");
92 archive_entry_set_mode(entry, S_IFREG | 0664);
93 archive_entry_set_size(entry, 10);
94 archive_entry_set_uid(entry, 80);
95 archive_entry_set_gid(entry, 90);
96 archive_entry_set_dev(entry, 12);
97 archive_entry_set_ino(entry, 8
[all...]
/macosx-10.10/dtrace-147/test/tst/common/docsExamples/
H A Drw.d38 syscall::read:entry,
39 syscall::write:entry
/macosx-10.10/libarchive-30/libarchive/libarchive/
H A Darchive_entry_stat.c40 archive_entry_stat(struct archive_entry *entry) argument
43 if (entry->stat == NULL) {
44 entry->stat = malloc(sizeof(*st));
45 if (entry->stat == NULL)
47 entry->stat_valid = 0;
58 if (entry->stat_valid)
59 return (entry->stat);
61 st = entry->stat;
66 st->st_atime = archive_entry_atime(entry);
68 st->st_birthtime = archive_entry_birthtime(entry);
[all...]
H A Darchive_entry_copy_stat.c36 archive_entry_copy_stat(struct archive_entry *entry, const struct stat *st) argument
39 archive_entry_set_atime(entry, st->st_atime, st->st_atimespec.tv_nsec);
40 archive_entry_set_ctime(entry, st->st_ctime, st->st_ctimespec.tv_nsec);
41 archive_entry_set_mtime(entry, st->st_mtime, st->st_mtimespec.tv_nsec);
43 archive_entry_set_atime(entry, st->st_atime, st->st_atim.tv_nsec);
44 archive_entry_set_ctime(entry, st->st_ctime, st->st_ctim.tv_nsec);
45 archive_entry_set_mtime(entry, st->st_mtime, st->st_mtim.tv_nsec);
47 archive_entry_set_atime(entry, st->st_atime, st->st_atime_n);
48 archive_entry_set_ctime(entry, st->st_ctime, st->st_ctime_n);
49 archive_entry_set_mtime(entry, s
[all...]
/macosx-10.10/postfix-255/postfix/src/util/
H A Dring.c85 /* ring_append - insert entry after ring head */
87 void ring_append(ring, entry)
89 RING *entry;
91 entry->succ = ring->succ;
92 entry->pred = ring;
93 ring->succ->pred = entry;
94 ring->succ = entry;
97 /* ring_prepend - insert new entry before ring head */
99 void ring_prepend(ring, entry)
101 RING *entry;
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/bind/
H A DRecordNumberBinding.java15 * An <code>EntryBinding</code> that treats a record number key entry as a
32 public Object entryToObject(DatabaseEntry entry) { argument
34 return new Long(entryToRecordNumber(entry));
38 public void objectToEntry(Object object, DatabaseEntry entry) { argument
40 recordNumberToEntry(((Number) object).longValue(), entry);
44 * Utility method for use by bindings to translate a entry buffer to an
47 * @param entry the entry buffer.
51 public static long entryToRecordNumber(DatabaseEntry entry) { argument
53 return DbCompat.getRecordNumber(entry)
64 recordNumberToEntry(long recordNumber, DatabaseEntry entry) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSPerformanceEntryCustom.cpp49 JSValue toJS(ExecState*, JSDOMGlobalObject* globalObject, PerformanceEntry* entry) argument
51 if (!entry)
55 if (entry->isResource())
56 return wrap<JSPerformanceResourceTiming>(globalObject, static_cast<PerformanceResourceTiming*>(entry));
60 if (entry->isMark())
61 return wrap<JSPerformanceMark>(globalObject, static_cast<PerformanceMark*>(entry));
63 if (entry->isMeasure())
64 return wrap<JSPerformanceMeasure>(globalObject, static_cast<PerformanceMeasure*>(entry));
67 return wrap<JSPerformanceEntry>(globalObject, entry);
/macosx-10.10/WebCore-7600.1.25/Modules/indexeddb/
H A DIDBDatabaseException.cpp74 const IDBDatabaseExceptionNameDescription* entry = getErrorEntry(ec); local
75 if (!entry)
79 description->code = entry->code;
82 description->name = entry ? entry->name : 0;
83 description->description = entry ? entry->description : 0;
90 const IDBDatabaseExceptionNameDescription* entry = getErrorEntry(ec); local
91 ASSERT(entry);
92 if (!entry)
100 const IDBDatabaseExceptionNameDescription* entry = getErrorEntry(ec); local
110 const IDBDatabaseExceptionNameDescription* entry = getErrorEntry(ec); local
[all...]
/macosx-10.10/pdisk-9/
H A Dlayout_dump.c70 layout *entry; local
77 for (entry = desc; entry->format != kEnd; entry++) {
78 value = strlen(entry->name);
85 for (entry = desc; entry->format != kEnd; entry++) {
87 if (entry->format != kBit) {
88 printf("%*s: ", max_name, entry
[all...]
H A Dhfs_misc.h39 char *get_HFS_name(partition_map *entry, int *kind);
/macosx-10.10/ruby-106/ruby/test/rss/
H A Dtest_parser_atom_entry.rb10 <entry/>
16 <entry xmlns="hoge"/>
20 assert_parse(<<-EOA, :missing_tag, "id", "entry") do
21 <entry xmlns="#{Atom::URI}"/>
25 assert_parse(<<-EOA, :missing_tag, "title", "entry") do
26 <entry xmlns="#{Atom::URI}">
28 </entry>
32 assert_parse(<<-EOA, :missing_tag, "updated", "entry") do
33 <entry xmlns="#{Atom::URI}">
36 </entry>
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap_r/
H A Drq.c46 struct re_s* entry; local
48 entry = (struct re_s *) LDAP_CALLOC( 1, sizeof( struct re_s ));
49 if ( entry ) {
50 entry->interval.tv_sec = interval;
51 entry->interval.tv_usec = 0;
52 entry->next_sched.tv_sec = time( NULL );
53 entry->next_sched.tv_usec = 0;
54 entry->routine = routine;
55 entry->arg = arg;
56 entry
105 struct re_s* entry; local
151 ldap_pvt_runqueue_resched( struct runqueue_s* rq, struct re_s* entry, int defer ) argument
[all...]
/macosx-10.10/ruby-106/ruby/test/rubygems/
H A Dtest_gem_package_tar_reader_entry.rb16 @entry = util_entry @tar
20 assert_equal 0, @entry.bytes_read
22 @entry.getc
24 assert_equal 1, @entry.bytes_read
28 @entry.close
30 assert @entry.bytes_read
32 e = assert_raises IOError do @entry.eof? end
35 e = assert_raises IOError do @entry.getc end
38 e = assert_raises IOError do @entry.pos end
41 e = assert_raises IOError do @entry
[all...]
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOConfigEntry.cpp58 IOConfigEntry* entry; local
59 entry = OSTypeAlloc( IOConfigEntry );
60 if(!entry)
62 if(!entry->init()) {
63 entry->release();
68 entry->fKey = key;
69 entry->fType = type;
72 entry->fData = obj;
74 return entry;
83 IOConfigEntry* entry; local
106 IOConfigEntry* entry; local
150 IOConfigEntry *entry = OSDynamicCast(IOConfigEntry, entries->getObject(i)); local
[all...]
/macosx-10.10/BerkeleyDB-21/db/java/src/com/sleepycat/bind/tuple/
H A DTupleInputBinding.java35 public Object entryToObject(DatabaseEntry entry) { argument
37 return TupleBinding.entryToInput(entry);
41 public void objectToEntry(Object object, DatabaseEntry entry) { argument
43 TupleBinding.inputToEntry((TupleInput) object, entry);
/macosx-10.10/xnu-2782.1.97/osfmk/kern/
H A Dcall_entry.h61 #define call_entry_setup(entry, pfun, p0) \
63 (entry)->func = (call_entry_func_t)(pfun); \
64 (entry)->param0 = (call_entry_param_t)(p0); \
65 (entry)->queue = NULL; \
66 (entry)->deadline = 0; \
74 call_entry_t entry,
77 queue_t old_queue = entry->queue;
80 (void)remque(qe(entry));
82 enqueue_tail(queue, qe(entry));
84 entry
73 call_entry_enqueue_tail( call_entry_t entry, queue_t queue) argument
90 call_entry_dequeue( call_entry_t entry) argument
104 call_entry_enqueue_deadline( call_entry_t entry, queue_head_t *queue, uint64_t deadline) argument
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/Security/
H A DappleSession.c45 * When a session is added via sslAddSession, and a cache entry already
47 * cache entry is updated with the new sessionData. The entry's expiration
48 * time is unchanged (thus a given session entry can only be used for a finite
76 const void *entry,
80 printf("entry: %p ", entry);
107 * One entry (value) in SessionCache.
117 /* this entry to be removed from session map at this time */
137 SessionCacheEntry *entry local
75 cachePrint( const void *entry, const SSLBuffer *key, const SSLBuffer *data) argument
159 SessionCacheEntryDelete(SessionCacheEntry *entry) argument
168 SessionCacheEntryMatchKey(SessionCacheEntry *entry, const SSLBuffer *key) argument
180 SessionCacheEntryIsStale(SessionCacheEntry *entry, CFAbsoluteTime now) argument
187 SessionCacheEntryIsStaleNow(SessionCacheEntry *entry) argument
193 SessionCacheEntrySetSessionData(SessionCacheEntry *entry, const SSLBuffer *data) argument
236 SessionCacheEntry *entry = NULL; local
294 SessionCacheEntry *entry = NULL; local
326 SessionCacheEntry *entry = *current; local
350 SessionCacheEntry *entry = *current; local
373 SessionCacheEntry *entry; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_ssl/lib/
H A DappleSession.c45 * When a session is added via sslAddSession, and a cache entry already
47 * cache entry is updated with the new sessionData. The entry's expiration
48 * time is unchanged (thus a given session entry can only be used for a finite
76 const void *entry,
80 printf("entry: %p ", entry);
107 * One entry (value) in SessionCache.
117 /* this entry to be removed from session map at this time */
137 SessionCacheEntry *entry local
75 cachePrint( const void *entry, const SSLBuffer *key, const SSLBuffer *data) argument
159 SessionCacheEntryDelete(SessionCacheEntry *entry) argument
168 SessionCacheEntryMatchKey(SessionCacheEntry *entry, const SSLBuffer *key) argument
180 SessionCacheEntryIsStale(SessionCacheEntry *entry, CFAbsoluteTime now) argument
187 SessionCacheEntryIsStaleNow(SessionCacheEntry *entry) argument
193 SessionCacheEntrySetSessionData(SessionCacheEntry *entry, const SSLBuffer *data) argument
236 SessionCacheEntry *entry = NULL; local
294 SessionCacheEntry *entry = NULL; local
326 SessionCacheEntry *entry = *current; local
350 SessionCacheEntry *entry = *current; local
373 SessionCacheEntry *entry; local
[all...]

Completed in 171 milliseconds

1234567891011>>