HomeSort by relevance Sort by last modified time
    Searched refs:entry (Results 126 - 150 of 4249) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_getprocaddress.c 86 const struct stw_extension_entry *entry; local
92 for (entry = stw_extension_entries; entry->name; entry++)
93 if (strcmp( lpszProc, entry->name ) == 0)
94 return entry->proc;
  /external/mesa3d/src/mapi/mapi/
entry_x86_tsd.h 78 entry_patch(mapi_func entry, int slot)
80 char *code = (char *) entry;
91 mapi_func entry; local
98 entry = (mapi_func) code;
99 entry_patch(entry, slot);
101 return entry;
entry.h 46 entry_patch(mapi_func entry, int slot);
  /frameworks/compile/mclinker/lib/MC/
SearchDirs.cpp 86 MCLDDirectory::iterator entry = (*mcld_dir)->begin(); local
91 while (entry!=enEnd) {
92 if (file == entry.path()->stem().native() ) {
93 if(mcld::sys::fs::detail::shared_library_extension == entry.path()->extension().native()) {
94 return entry.path();
97 ++entry;
102 entry = (*mcld_dir)->begin();
104 while ( entry!=enEnd ) {
105 if (file == entry.path()->stem().native() &&
106 mcld::sys::fs::detail::static_library_extension == entry.path()->extension().native())
130 MCLDDirectory::iterator entry = (*mcld_dir)->begin(); local
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/collections/
DefaultMapEntry.java 23 * A restricted implementation of {@link java.util.Map.Entry} that prevents
36 * Constructs a new entry with the specified key and given value.
38 * @param key the key for the entry, may be null
39 * @param value the value for the entry, may be null
46 * Constructs a new entry from the specified KeyValue.
49 * @throws NullPointerException if the entry is null
56 * Constructs a new entry from the specified MapEntry.
58 * @param entry the entry to copy, must not be null
59 * @throws NullPointerException if the entry is nul
    [all...]
  /system/core/include/zipfile/
zipfile.h 35 // Get a named entry object. Returns NULL if it doesn't exist
40 // Return the size of the entry.
41 size_t get_zipentry_size(zipentry_t entry);
43 // return the filename of this entry, you own the memory returned
44 char* get_zipentry_name(zipentry_t entry);
48 int decompress_zipentry(zipentry_t entry, void* buf, int bufsize);
  /external/chromium/net/tools/testserver/
chromiumsync.py 77 """An entry should not have more than one protobuf extension present."""
84 def GetEntryType(entry):
88 entry: A SyncEntity protobuf object whose type to determine.
90 A value from ALL_TYPES if the entry's type can be determined, or None
93 ProtobufExtensionNotUnique: More than one type was indicated by the entry.
95 if entry.server_defined_unique_tag == TOP_LEVEL_FOLDER_TAG:
97 entry_types = GetEntryTypesFromSpecifics(entry.specifics)
283 def _SaveEntry(self, entry):
284 """Insert or update an entry in the change log, and give it a new version.
286 The ID fields of this entry are assumed to be valid server IDs. Thi
    [all...]
  /external/chromium/chrome/browser/sync/engine/
build_and_process_conflict_sets_command.cc 74 syncable::Entry entry(trans, syncable::GET_BY_ID, *i);
75 CHECK(entry.good());
76 if (entry.Get(syncable::IS_UNSYNCED))
78 if (entry.Get(syncable::IS_UNAPPLIED_UPDATE))
95 void StoreLocalDataForUpdateRollback(syncable::Entry* entry,
97 CHECK(!entry->Get(syncable::IS_UNSYNCED)) << " Storing Rollback data for "
98 "entry that's unsynced." << *entry;
276 << parent_id << " entry: " << *entry; local
    [all...]
  /external/wpa_supplicant_8/src/radius/
radius_client.c 31 * Maximum number of retransmit attempts before the entry is removed from
322 struct radius_msg_list *entry,
329 if (entry->msg_type == RADIUS_ACCT ||
330 entry->msg_type == RADIUS_ACCT_INTERIM) {
332 if (entry->attempts == 0)
340 if (entry->attempts == 0)
348 /* retransmit; remove entry if too many attempts */
349 entry->attempts++;
350 hostapd_logger(radius->ctx, entry->addr, HOSTAPD_MODULE_RADIUS,
352 radius_msg_get_hdr(entry->msg)->identifier)
379 struct radius_msg_list *entry, *prev, *tmp; local
487 struct radius_msg_list *entry; local
518 struct radius_msg_list *entry, *prev; local
569 struct radius_msg_list *entry, *prev, *tmp; local
843 struct radius_msg_list *entry, *prev, *_remove; local
883 struct radius_msg_list *entry, *prev, *tmp; local
917 struct radius_msg_list *entry; local
947 struct radius_msg_list *entry; local
1323 struct radius_msg_list *entry, *prev, *tmp; local
    [all...]
  /art/compiler/dex/quick/x86/
assemble_x86.cc 365 const X86EncodingMap* entry = &X86Mir2Lir::EncodingMap[lir->opcode]; local
1279 const X86EncodingMap *entry = &X86Mir2Lir::EncodingMap[lir->opcode]; local
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
BasicPoolEntryRef.java 48 /** The planned route of the entry. */
53 * Creates a new reference to a pool entry.
55 * @param entry the pool entry, must not be <code>null</code>
58 public BasicPoolEntryRef(BasicPoolEntry entry,
60 super(entry, queue);
61 if (entry == null) {
63 ("Pool entry must not be null.");
65 route = entry.getPlannedRoute();
70 * Obtain the planned route for the referenced entry
    [all...]
  /external/chromium/net/ftp/
ftp_directory_listing_parser_ls.cc 154 FtpDirectoryListingEntry entry; local
160 &entry.last_modified)) {
173 entry.type = FtpDirectoryListingEntry::SYMLINK;
175 entry.type = FtpDirectoryListingEntry::DIRECTORY;
177 entry.type = FtpDirectoryListingEntry::FILE;
180 if (!base::StringToInt64(columns[column_offset - 3], &entry.size)) {
183 // entry, but can't really get the size (What if the group is named
187 entry.size = 0;
189 if (entry.size < 0)
191 if (entry.type != FtpDirectoryListingEntry::FILE
    [all...]
  /external/chromium_org/chrome/browser/policy/
registry_dict_win.cc 26 // Returns the entry with key |name| in |dictionary| (can be NULL), or NULL.
31 const base::DictionaryValue* entry = NULL; local
32 dictionary->GetDictionaryWithoutPathExpansion(name, &entry);
33 return entry;
98 for (base::DictionaryValue::Iterator entry(*dict); !entry.IsAtEnd();
99 entry.Advance()) {
101 ConvertValue(entry.value(), GetSchemaFor(schema, entry.key())));
102 result->SetWithoutPathExpansion(entry.key()
163 const base::Value* entry = NULL; local
207 KeyMap::iterator entry = keys_.find(name); local
212 KeyMap::const_iterator entry = keys_.find(name); local
223 RegistryDict*& entry = keys_[name]; local
230 KeyMap::iterator entry = keys_.find(name); local
243 ValueMap::iterator entry = values_.find(name); local
248 ValueMap::const_iterator entry = values_.find(name); local
259 Value*& entry = values_[name]; local
266 ValueMap::iterator entry = values_.find(name); local
    [all...]
  /external/chromium_org/content/public/browser/
navigation_details.cc 10 : entry(NULL),
  /external/chromium_org/third_party/mesa/src/src/mapi/mapi/
entry.h 46 entry_patch(mapi_func entry, int slot);
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
IFormatter.java 25 String getOutput(TrackerEntry entry);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/cc_hash_table_map_/
cond_key_dtor_entry_dealtor.hpp 50 typedef typename HT_Map::entry entry; typedef in class:__gnu_pbds::detail::cond_dealtor
54 cond_dealtor(entry_allocator* p_a, entry* p_e)
72 entry* const m_p_e;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/cc_hash_table_map_/
cond_key_dtor_entry_dealtor.hpp 50 typedef typename HT_Map::entry entry; typedef in class:__gnu_pbds::detail::cond_dealtor
54 cond_dealtor(entry_allocator* p_a, entry* p_e)
72 entry* const m_p_e;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/cc_hash_table_map_/
cond_key_dtor_entry_dealtor.hpp 50 typedef typename HT_Map::entry entry; typedef in class:__gnu_pbds::detail::cond_dealtor
54 cond_dealtor(entry_allocator* p_a, entry* p_e)
72 entry* const m_p_e;
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
ZipLocator.java 54 private final ZipEntry entry; field in class:ZipLocator.JarAssetInfo
56 public JarAssetInfo(AssetManager manager, AssetKey key, ZipEntry entry){
58 this.entry = entry;
63 return zipfile.getInputStream(entry);
65 throw new AssetLoadException("Failed to load zip entry: "+entry, ex);
80 ZipEntry entry = zipfile.getEntry(name); local
81 if (entry == null)
84 return new JarAssetInfo(manager, key, entry);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_copy_propagation.cpp 35 fs_visitor::try_copy_propagate(fs_inst *inst, int arg, acp_entry *entry)
37 if (inst->src[arg].file != entry->dst.file ||
38 inst->src[arg].reg != entry->dst.reg ||
39 inst->src[arg].reg_offset != entry->dst.reg_offset) {
46 entry->src.negate)
49 bool has_source_modifiers = entry->src.abs || entry->src.negate;
52 (has_source_modifiers || entry->src.file == UNIFORM))
55 inst->src[arg].file = entry->src.file;
56 inst->src[arg].reg = entry->src.reg
91 acp_entry *entry = (acp_entry *)entry_node; local
102 acp_entry *entry = (acp_entry *)entry_node; local
124 acp_entry *entry = ralloc(mem_ctx, acp_entry); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_copy_propagation.cpp 35 fs_visitor::try_copy_propagate(fs_inst *inst, int arg, acp_entry *entry)
37 if (inst->src[arg].file != entry->dst.file ||
38 inst->src[arg].reg != entry->dst.reg ||
39 inst->src[arg].reg_offset != entry->dst.reg_offset) {
46 entry->src.negate)
49 bool has_source_modifiers = entry->src.abs || entry->src.negate;
52 (has_source_modifiers || entry->src.file == UNIFORM))
55 inst->src[arg].file = entry->src.file;
56 inst->src[arg].reg = entry->src.reg
91 acp_entry *entry = (acp_entry *)entry_node; local
102 acp_entry *entry = (acp_entry *)entry_node; local
124 acp_entry *entry = ralloc(mem_ctx, acp_entry); local
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
protocol_parser_unittest.cc 31 SBEntry* entry = chunks[0].hosts[0].entry; local
32 EXPECT_TRUE(entry->IsAdd());
33 EXPECT_TRUE(entry->IsPrefix());
34 EXPECT_EQ(entry->prefix_count(), 0);
37 entry = chunks[0].hosts[1].entry;
38 EXPECT_TRUE(entry->IsAdd());
39 EXPECT_TRUE(entry->IsPrefix());
40 EXPECT_EQ(entry->prefix_count(), 3)
82 SBEntry* entry = chunks[0].hosts[0].entry; local
111 SBEntry* entry = chunks[0].hosts[0].entry; local
262 SBEntry* entry = chunks[0].hosts[0].entry; local
321 SBEntry* entry = chunks[0].hosts[0].entry; local
651 SBEntry* entry = chunks[0].hosts[0].entry; local
710 SBEntry* entry = chunks[0].hosts[0].entry; local
737 SBEntry* entry = chunks[0].hosts[0].entry; local
776 SBEntry* entry = chunks[0].hosts[0].entry; local
    [all...]
  /frameworks/base/core/java/com/android/internal/net/
NetworkStatsFactory.java 78 final NetworkStats.Entry entry = new NetworkStats.Entry(); local
85 entry.iface = reader.nextString();
86 entry.uid = UID_ALL;
87 entry.set = SET_ALL;
88 entry.tag = TAG_NONE;
93 entry.rxBytes = reader.nextLong();
94 entry.rxPackets = reader.nextLong();
95 entry.txBytes = reader.nextLong()
134 final NetworkStats.Entry entry = new NetworkStats.Entry(); local
197 final NetworkStats.Entry entry = new NetworkStats.Entry(); local
    [all...]
  /external/chromium_org/content/browser/ssl/
ssl_policy.cc 79 void SSLPolicy::DidRunInsecureContent(NavigationEntryImpl* entry,
81 if (!entry)
84 SiteInstance* site_instance = entry->site_instance();
101 void SSLPolicy::UpdateEntry(NavigationEntryImpl* entry,
103 DCHECK(entry);
105 InitializeEntryIfNeeded(entry);
107 if (!entry->GetURL().SchemeIsSecure())
113 if (!entry->GetSSL().cert_id) {
114 entry->GetSSL().security_style = SECURITY_STYLE_UNAUTHENTICATED;
118 if (net::IsCertStatusError(entry->GetSSL().cert_status))
    [all...]

Completed in 579 milliseconds

1 2 3 4 56 7 8 91011>>