Searched refs:entry (Results 126 - 150 of 2918) sorted by relevance

1234567891011>>

/external/ltp/lib/
H A Dtst_dir_is_empty.c30 struct dirent *entry; local
34 while ((entry = SAFE_READDIR(cleanup_fn, dir)) != NULL) {
35 const char *file = entry->d_name;
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DLazyField.java92 private Entry<K, LazyField> entry; field in class:LazyField.LazyEntry
94 private LazyEntry(Entry<K, LazyField> entry) { argument
95 this.entry = entry;
100 return entry.getKey();
105 LazyField field = entry.getValue();
113 return entry.getValue();
123 return entry.getValue().setValue((MessageLite) value);
142 Entry<K, ?> entry = iterator.next();
143 if (entry
[all...]
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_dict_helpers.c188 * Add a string entry to the dict.
208 * Add a boolean entry to the dict.
226 * Add a 16-bit signed integer entry to the dict.
245 * Add a 16-bit unsigned integer entry to the dict.
283 * Add a 32-bit unsigned integer entry to the dict.
302 * Add a DBus object path entry to the dict.
323 * Add a byte array entry to the dict.
346 * Begin an array entry in the dict
404 * Add a single string element to a string array dict entry
409 * @param elem The string element to be added to the dict entry'
615 _wpa_dbus_dict_entry_get_byte_array( DBusMessageIter *iter, struct wpa_dbus_dict_entry *entry) argument
672 _wpa_dbus_dict_entry_get_string_array( DBusMessageIter *iter, int array_type, struct wpa_dbus_dict_entry *entry) argument
743 _wpa_dbus_dict_entry_get_binarray( DBusMessageIter *iter, struct wpa_dbus_dict_entry *entry) argument
820 _wpa_dbus_dict_entry_get_array( DBusMessageIter *iter_dict_val, struct wpa_dbus_dict_entry *entry) argument
854 _wpa_dbus_dict_fill_value_from_variant( struct wpa_dbus_dict_entry *entry, DBusMessageIter *iter) argument
950 wpa_dbus_dict_get_entry(DBusMessageIter *iter_dict, struct wpa_dbus_dict_entry * entry) argument
1028 wpa_dbus_dict_entry_clear(struct wpa_dbus_dict_entry *entry) argument
[all...]
/external/ImageMagick/coders/
H A Draw.c310 *entry;
312 entry=AcquireMagickInfo("RAW","R","Raw red samples");
313 entry->decoder=(DecodeImageHandler *) ReadRAWImage;
314 entry->encoder=(EncodeImageHandler *) WriteRAWImage;
315 entry->flags|=CoderRawSupportFlag;
316 entry->flags|=CoderEndianSupportFlag;
317 entry->format_type=ImplicitFormatType;
318 (void) RegisterMagickInfo(entry);
319 entry=AcquireMagickInfo("RAW","C","Raw cyan samples");
320 entry
306 *entry; local
[all...]
H A Dxc.c190 *entry;
192 entry=AcquireMagickInfo("XC","XC","Constant image uniform color");
193 entry->decoder=(DecodeImageHandler *) ReadXCImage;
194 entry->flags^=CoderAdjoinFlag;
195 entry->format_type=ImplicitFormatType;
196 entry->flags|=CoderRawSupportFlag;
197 entry->flags|=CoderEndianSupportFlag;
198 (void) RegisterMagickInfo(entry);
199 entry=AcquireMagickInfo("XC","CANVAS","Constant image uniform color");
200 entry
187 *entry; local
[all...]
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DBasicPoolEntryRef.java53 /** The planned route of the entry. */
58 * Creates a new reference to a pool entry.
60 * @param entry the pool entry, must not be <code>null</code>
63 public BasicPoolEntryRef(BasicPoolEntry entry, argument
65 super(entry, queue);
66 if (entry == null) {
68 ("Pool entry must not be null.");
70 route = entry.getPlannedRoute();
75 * Obtain the planned route for the referenced entry
[all...]
/external/mesa3d/src/mapi/
H A Dentry.h44 entry_patch(mapi_func entry, int slot);
/external/python/cpython2/Lib/idlelib/idle_test/
H A Dtest_editmenu.py24 cls.entry = tk.Entry(root)
31 del cls.text, cls.entry, cls.spin
57 "Test pasting into an entry without a selection."
60 entry = self.entry
62 entry.delete(0, 'end')
63 entry.insert(0, 'one')
64 entry.select_range(0, end) # see note
65 entry.event_generate('<<Paste>>')
66 self.assertEqual(entry
[all...]
/external/syslinux/gpxe/src/arch/i386/include/
H A Dpxeparent.h8 extern int pxeparent_call ( SEGOFF16_t entry, unsigned int function,
/external/libexif/libexif/fuji/
H A Dmnote-fuji-entry.c1 /* mnote-fuji-entry.c
29 #include "mnote-fuji-entry.h"
190 mnote_fuji_entry_get_value (MnoteFujiEntry *entry, argument
200 if (!entry) return (NULL);
205 switch (entry->tag) {
207 CF (entry->format, EXIF_FORMAT_UNDEFINED, val, maxlen);
208 CC (entry->components, 4, val, maxlen);
209 memcpy (val, entry->data, MIN(maxlen, entry->size));
228 CF (entry
[all...]
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_cache.c38 destroy_buffer_locked(struct pb_cache_entry *entry) argument
40 struct pb_cache *mgr = entry->mgr;
41 struct pb_buffer *buf = entry->buffer;
44 if (entry->head.next) {
45 LIST_DEL(&entry->head);
60 struct pb_cache_entry *entry; local
68 entry = LIST_ENTRY(struct pb_cache_entry, curr, head);
70 if (!os_time_timeout(entry->start, entry->end, now))
73 destroy_buffer_locked(entry);
85 pb_cache_add_buffer(struct pb_cache_entry *entry) argument
119 pb_cache_is_buffer_compat(struct pb_cache_entry *entry, pb_size size, unsigned alignment, unsigned usage) argument
151 struct pb_cache_entry *entry; local
248 pb_cache_init_entry(struct pb_cache *mgr, struct pb_cache_entry *entry, struct pb_buffer *buf, unsigned bucket_index) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_cse.cpp155 foreach_in_list_use_after(aeb_entry, entry, &aeb) {
157 if (!(entry->generator->dst.is_null() && !inst->dst.is_null()) &&
158 instructions_match(inst, entry->generator)) {
170 /* Our first sighting of this expression. Create an entry. */
171 aeb_entry *entry = ralloc(cse_ctx, aeb_entry); local
172 entry->tmp = src_reg(); /* file will be BAD_FILE */
173 entry->generator = inst;
174 aeb.push_tail(entry);
180 bool no_existing_temp = entry->tmp.file == BAD_FILE;
181 if (no_existing_temp && !entry
[all...]
/external/mesa3d/src/util/
H A Dset.h63 void (*delete_function)(struct set_entry *entry));
77 _mesa_set_remove(struct set *set, struct set_entry *entry);
80 _mesa_set_next_entry(const struct set *set, struct set_entry *entry);
84 int (*predicate)(struct set_entry *entry));
88 * insertion (which may rehash the set, making entry a dangling
91 #define set_foreach(set, entry) \
92 for (entry = _mesa_set_next_entry(set, NULL); \
93 entry != NULL; \
94 entry = _mesa_set_next_entry(set, entry))
[all...]
/external/valgrind/coregrind/m_initimg/
H A Dinitimg-pathscan.c57 HChar *cp, *entry; local
64 entry = cp = colsep;
73 if ((*func)(entry)) {
78 entry = cp+1;
90 static Bool match_executable(const HChar *entry) argument
93 if (*entry == '\0')
94 entry = ".";
96 HChar buf[VG_(strlen)(entry) + 1 + VG_(strlen)(executable_name_in) + 1];
98 VG_(sprintf)(buf, "%s/%s", entry, executable_name_in);
/external/kmod/shared/
H A Dhash.c78 struct hash_entry *entry, *entry_end; local
79 entry = bucket->entries;
80 entry_end = entry + bucket->used;
81 for (; entry < entry_end; entry++)
82 hash->free_value((void *)entry->value);
152 struct hash_entry *entry, *entry_end; local
164 entry = bucket->entries;
165 entry_end = entry + bucket->used;
166 for (; entry < entry_en
195 struct hash_entry *entry, *entry_end; local
244 const struct hash_entry *entry = bsearch( local
259 struct hash_entry *entry, *entry_end; local
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_screen_cache.c97 struct svga_host_surface_cache_entry *entry; local
114 entry = LIST_ENTRY(struct svga_host_surface_cache_entry, curr, bucket_head);
116 assert(entry->handle);
121 * We unlink the surface from the cache entry and we add the entry to
124 if (memcmp(&entry->key, key, sizeof *key) == 0 &&
125 sws->fence_signalled(sws, entry->fence, 0) == 0) {
128 assert(sws->surface_is_flushed(sws, entry->handle));
130 handle = entry->handle; /* Reference is transfered here. */
131 entry
179 struct svga_host_surface_cache_entry *entry = NULL, *next_entry; local
217 struct svga_host_surface_cache_entry *entry = NULL; local
317 struct svga_host_surface_cache_entry *entry; local
591 struct svga_host_surface_cache_entry *entry = local
[all...]
/external/icu/icu4c/source/common/
H A Ducnvmbcs.h271 #define MBCS_ENTRY_TRANSITION_SET_OFFSET(entry, offset) (int32_t)(((entry)&0xff000000)|(offset))
272 #define MBCS_ENTRY_TRANSITION_ADD_OFFSET(entry, offset) (int32_t)((entry)+(offset))
275 #define MBCS_ENTRY_SET_FINAL(entry) (int32_t)((entry)|0x80000000)
276 #define MBCS_ENTRY_FINAL_SET_ACTION(entry, action) (int32_t)(((entry)&0xff0fffff)|((int32_t)(action)<<20L))
277 #define MBCS_ENTRY_FINAL_SET_VALUE(entry, value) (int32_t)(((entry)
[all...]
/external/ImageMagick/Magick++/tests/
H A DcoderInfo.cpp24 list<CoderInfo>::iterator entry = coderList.begin(); local
25 while( entry != coderList.end() )
29 (( entry->isReadable() && isReadable_ != CoderInfo::TrueMatch ) ||
30 ( !entry->isReadable() && isReadable_ != CoderInfo::FalseMatch )) )
33 << entry->name()
35 << static_cast<int>(entry->isReadable())
43 (( entry->isWritable() && isWritable_ != CoderInfo::TrueMatch ) ||
44 ( !entry->isWritable() && isWritable_ != CoderInfo::FalseMatch )) )
47 << entry->name()
49 << static_cast<int>(entry
[all...]
/external/python/cpython3/Lib/idlelib/idle_test/
H A Dtest_editmenu.py23 cls.entry = tk.Entry(root)
31 del cls.text, cls.entry, cls.tentry
48 "Test pasting into an entry with and without a selection."
49 # Generated <<Paste>> fails for tk entry without empty select
51 for entry in self.entry, self.tentry:
53 with self.subTest(entry=entry, end=end, ans=ans):
54 entry.delete(0, 'end')
55 entry
[all...]
/external/tensorflow/tensorflow/stream_executor/
H A Dexecutor_cache.cc26 // In the fast path case, the cache already has an entry and we can just
34 Entry* entry = nullptr; local
37 entry = &cache_[config.ordinal];
38 // Release the map lock; the address of 'entry' is stable because
45 mutex_lock lock{entry->configurations_mutex};
46 for (const auto& iter : entry->configurations) {
62 entry->configurations.emplace_back(config, std::move(result.ValueOrDie()));
63 return entry->configurations.back().second.get();
68 Entry* entry = nullptr; local
73 entry
[all...]
/external/mdnsresponder/mDNSWindows/DNSServiceBrowser/WindowsCE/Sources/
H A DBrowserDialog.cpp143 BrowserEntry * entry; local
149 entry = &mBrowserEntries[ selectedItem ];
150 url += "http://" + entry->ip;
151 temp = entry->text;
193 BrowserEntry * entry; local
215 entry = new BrowserEntry;
216 ASSERT( entry );
217 if( entry )
219 UTF8StringToStringObject( inEvent->data.resolved->name, entry->name );
220 UTF8StringToStringObject( ip, entry
260 BrowserEntry * entry; local
316 BrowserEntry * entry; local
[all...]
/external/skia/src/core/
H A DSkTInternalLList.h53 void remove(T* entry) { argument
55 SkASSERT(this->isInList(entry));
57 T* prev = entry->fPrev;
58 T* next = entry->fNext;
71 entry->fPrev = nullptr;
72 entry->fNext = nullptr;
75 entry->fList = nullptr;
79 void addToHead(T* entry) { argument
80 SkASSERT(nullptr == entry->fPrev && nullptr == entry
98 addToTail(T* entry) argument
[all...]
/external/skqp/src/core/
H A DSkTInternalLList.h53 void remove(T* entry) { argument
55 SkASSERT(this->isInList(entry));
57 T* prev = entry->fPrev;
58 T* next = entry->fNext;
71 entry->fPrev = nullptr;
72 entry->fNext = nullptr;
75 entry->fList = nullptr;
79 void addToHead(T* entry) { argument
80 SkASSERT(nullptr == entry->fPrev && nullptr == entry
98 addToTail(T* entry) argument
[all...]
/external/webrtc/webrtc/base/
H A Ddiskcache.cc100 Entry* entry = GetOrCreateEntry(id, true); local
101 if (LS_LOCKED == entry->lock_state)
103 if ((LS_UNLOCKED == entry->lock_state) && (entry->accessors > 0))
109 entry->lock_state = LS_LOCKED;
114 Entry* entry = GetOrCreateEntry(id, false); local
115 if (LS_LOCKED != entry->lock_state)
121 ASSERT(previous_size <= entry->size);
122 if (previous_size > entry->size) {
123 previous_size = entry
142 Entry* entry = GetOrCreateEntry(id, false); local
158 const Entry* entry = GetEntry(id); local
174 const Entry* entry = GetEntry(id); local
179 const Entry* entry = GetEntry(id); local
189 Entry* entry = GetOrCreateEntry(id, false); local
317 const Entry* entry = GetEntry(id); local
[all...]
/external/e2fsprogs/contrib/android/
H A Dbase_fs.c9 struct basefs_entry entry; member in struct:base_fs
42 struct basefs_entry *entry = NULL; local
51 entry = calloc(1, sizeof(*entry));
52 if (!entry)
59 if (sscanf(line, "%ms%n", &entry->path, &offset) != 1)
62 memmove(entry->path, entry->path + len, strlen(entry->path) - len + 1);
75 add_blocks_to_range(&entry
95 struct basefs_entry *entry = e; local
106 struct basefs_entry *entry; local
[all...]

Completed in 2635 milliseconds

1234567891011>>