Searched refs:entry (Results 251 - 275 of 2680) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dgetdents_helper.cc45 dirent& entry = dirents_.back(); local
46 entry.d_ino = ino;
47 entry.d_off = sizeof(dirent);
48 entry.d_reclen = sizeof(dirent);
55 strncpy(&entry.d_name[0], name, copylen);
56 entry.d_name[copylen] = 0;
/external/chromium_org/net/tools/gdig/
H A Dfile_net_log.cc23 void FileNetLogObserver::OnAddEntry(const net::NetLog::Entry& entry) { argument
25 DCHECK(entry.source().IsValid());
27 const char* source = NetLog::SourceTypeToString(entry.source().type);
28 const char* type = NetLog::EventTypeToString(entry.type());
30 scoped_ptr<base::Value> param_value(entry.ParametersToValue());
45 entry.source().id, source, type, params.c_str());
/external/chromium_org/third_party/WebKit/Source/build/scripts/
H A Dmake_names.py37 def _symbol(entry):
38 if entry['Symbol'] is not None:
39 return entry['Symbol']
41 if entry['name'].startswith('-webkit-'):
42 return entry['name'].replace('-', '_')[1:]
43 return name_utilities.cpp_name(entry).replace('-', '_')
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Dentry_x86-64_tls.h89 entry_patch(mapi_func entry, int slot) argument
91 char *code = (char *) entry;
106 mapi_func entry; local
120 entry = (mapi_func) code;
121 entry_patch(entry, slot);
123 return entry;
/external/chromium_org/third_party/skia/src/core/
H A DSkQuadTree.cpp57 void SkQuadTree::insert(Node* node, Entry* entry) { argument
60 switch(child_intersect(entry->fBounds, node->fSplitPoint)) {
62 this->insert(node->fChildren[kTopLeft], entry);
65 this->insert(node->fChildren[kTopRight], entry);
68 this->insert(node->fChildren[kBottomLeft], entry);
71 this->insert(node->fChildren[kBottomRight], entry);
74 node->fEntries.push(entry);
79 node->fEntries.push(entry);
115 for (Entry* entry = node->fEntries.head(); NULL != entry;
161 Entry* entry = fEntryPool.acquire(); local
201 Entry* entry = entries.pop(); local
[all...]
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp123 SOEntry entry; local
159 SOEntry entry; local
167 for (addr_t cursor = m_current.map_addr; cursor != 0; cursor = entry.next)
169 if (!ReadSOEntryFromMemory(cursor, entry))
173 // On Linux this is indicated by an empty path in the entry.
175 if (entry.path.empty() || ::strcmp(entry.path.c_str(), m_exe_path) == 0)
178 pos = std::find(m_soentries.begin(), m_soentries.end(), entry);
181 m_soentries.push_back(entry);
182 m_added_soentries.push_back(entry);
214 SOEntry entry; local
276 ReadSOEntryFromMemory(lldb::addr_t addr, SOEntry &entry) argument
[all...]
/external/mesa3d/src/mapi/mapi/
H A Dentry_x86-64_tls.h89 entry_patch(mapi_func entry, int slot) argument
91 char *code = (char *) entry;
106 mapi_func entry; local
120 entry = (mapi_func) code;
121 entry_patch(entry, slot);
123 return entry;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DTwoSecondIntersectionFinder.java33 for (TimeToSampleBox.Entry entry : track.getDecodingTimeEntries()) {
34 duration += entry.getCount() * entry.getDelta();
64 for (TimeToSampleBox.Entry entry : entries) {
65 for (int i = 0; i < entry.getCount(); i++) {
71 time += entry.getDelta();
/external/skia/src/core/
H A DSkQuadTree.cpp57 void SkQuadTree::insert(Node* node, Entry* entry) { argument
60 switch(child_intersect(entry->fBounds, node->fSplitPoint)) {
62 this->insert(node->fChildren[kTopLeft], entry);
65 this->insert(node->fChildren[kTopRight], entry);
68 this->insert(node->fChildren[kBottomLeft], entry);
71 this->insert(node->fChildren[kBottomRight], entry);
74 node->fEntries.push(entry);
79 node->fEntries.push(entry);
115 for (Entry* entry = node->fEntries.head(); NULL != entry;
161 Entry* entry = fEntryPool.acquire(); local
201 Entry* entry = entries.pop(); local
[all...]
/external/srec/portable/include/
H A Dphashtable.h67 * hash table is increased and each entry is put in its new linked list based
218 * Retrieves the hash entry corresponding to the key.
221 * @param key The key for which to retrieve the hash entry.
222 * @param entry The entry associated with the key. Cannot be NULL.
227 PHashTableEntry **entry);
230 * Returns the key and value associated with this entry. Both key and values
231 * can be deleted after removing the entry from the table.
233 * @param entry The hashtable entry
[all...]
/external/srec/portable/src/
H A DPFileSystemImpl.c80 PHashTableEntry* entry; local
88 CHKLOG(rc, PHashTableEntryGetFirst(PFileSystemPathMap, &entry));
89 while (entry != NULL)
91 CHKLOG(rc, PHashTableEntryGetKeyValue(entry, (void **)&key, (void **)NULL));
92 oldEntry = entry;
93 CHKLOG(rc, PHashTableEntryAdvance(&entry));
/external/chromium_org/v8/src/
H A Dprofile-generator.cc43 HashMap::Entry* entry = GetEntry(src, len); local
44 if (entry->value == NULL) {
48 entry->key = dst.start();
49 entry->value = entry->key;
51 return reinterpret_cast<const char*>(entry->value);
65 HashMap::Entry* entry = GetEntry(str, len); local
66 if (entry->value == NULL) {
67 // New entry added.
68 entry
189 FindChild(CodeEntry* entry) argument
197 FindOrAddChild(CodeEntry* entry) argument
363 AddCode(Address addr, CodeEntry* entry, unsigned size) argument
389 const CodeEntryInfo& entry = locator.value(); local
405 const CodeEntryInfo& entry = locator.value(); local
590 CodeEntry** entry = entries.start(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/settings/
H A DEditFileSystemDialog.js144 var entry = /** @type {!WebInspector.FileSystemMapping.Entry} */ (event.data);
145 this._addMappingRow(entry);
150 var entry = /** @type {!WebInspector.FileSystemMapping.Entry} */ (event.data);
151 if (this._fileSystemPath !== entry.fileSystemPath)
153 delete this._entries[entry.urlPrefix];
154 if (this._fileMappingsList.itemForId(entry.urlPrefix))
155 this._fileMappingsList.removeItem(entry.urlPrefix);
168 var entry = this._entries[itemId];
171 return entry.urlPrefix;
173 return entry
[all...]
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dcros_log_visualizer_view.js46 // Stores log entry objects
129 * Creates the log table where each row represents a entry of log.
149 createTableRow: function(entry) {
158 var levelTag = addNodeWithText(cells[0], 'p', entry.level);
159 levelTag.className = LOG_CELL_LEVEL_CLASSNAME_LIST[entry.level];
163 cells[1].textContent = entry.getTime();
167 this.marker.getHighlightedEntry(entry, 'processName', cells[2]);
171 this.marker.getHighlightedEntry(entry, 'processID', cells[3]);
175 this.marker.getHighlightedEntry(entry, 'description', cells[4]);
193 * Uses the search query to match the pattern in different fields of entry
[all...]
/external/chromium_org/base/prefs/
H A Dpref_value_map.cc20 const Map::const_iterator entry = prefs_.find(key); local
21 if (entry != prefs_.end()) {
23 *value = entry->second;
31 const Map::const_iterator entry = prefs_.find(key); local
32 if (entry != prefs_.end()) {
34 *value = entry->second;
44 const Map::iterator entry = prefs_.find(key); local
45 if (entry != prefs_.end()) {
46 if (base::Value::Equals(entry->second, value))
48 delete entry
58 const Map::iterator entry = prefs_.find(key); local
[all...]
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dresource_metadata.cc40 // Returns true when there is no entry with the specified name under the parent
41 // other than the specified entry.
59 // Returns true when the ID is used by an immutable entry.
125 ResourceEntry entry; local
126 FileError error = storage_->GetEntry(util::kDriveGrandRootLocalId, &entry);
137 if (!entry.resource_id().empty()) {
139 entry.clear_resource_id();
140 error = storage_->PutEntry(entry);
149 error = storage_->GetEntry(util::kDriveOtherDirLocalId, &entry);
160 if (!entry
225 AddEntry(const ResourceEntry& entry, std::string* out_id) argument
329 ResourceEntry entry; local
352 RefreshEntry(const ResourceEntry& entry) argument
418 ResourceEntry entry; local
451 ResourceEntry entry; local
500 PutEntryUnderDirectory(const ResourceEntry& entry) argument
514 GetDeduplicatedBaseName( const ResourceEntry& entry, std::string* base_name) argument
582 ResourceEntry entry; local
[all...]
/external/chromium_org/sync/engine/
H A Dsyncer_util.cc26 #include "sync/syncable/entry.h"
80 // Expected entry points of this function:
91 // 1) Client has entry for tag already, ID is server style, matches
92 // 2) Client has entry for tag already, ID is server, doesn't match.
93 // 3) Client has entry for tag already, ID is local, (never matches)
94 // 4) Client has no entry for tag
97 // work just fine. Update will end up in the proper entry, via ID lookup.
103 // this update gets targeted at the correct local entry; we expect conflict
126 // Target this change to the existing local entry; later,
127 // we'll change the ID of the local entry t
191 AttemptToUpdateEntry( syncable::WriteTransaction* const trans, syncable::MutableEntry* const entry, Cryptographer* cryptographer) argument
437 UpdateLocalDataFromServerData( syncable::WriteTransaction* trans, syncable::MutableEntry* entry) argument
468 ValidateCommitEntry(syncable::Entry* entry) argument
[all...]
/external/chromium_org/sync/internal_api/
H A Dsync_backup_manager.cc99 syncable::MutableEntry entry(trans.GetWrappedWriteTrans(),
101 CHECK(entry.good());
103 if (!entry.GetId().ServerKnows())
104 entry.PutId(syncable::Id::CreateFromServerId(entry.GetId().value()));
105 if (!entry.GetParentId().ServerKnows()) {
106 entry.PutParentIdPropertyOnly(syncable::Id::CreateFromServerId(
107 entry.GetParentId().value()));
109 entry.PutBaseVersion(1);
110 entry
[all...]
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DConnPoolByRoute.java245 * Obtains a pool entry with a connection within the given timeout.
255 * @return pool entry holding a connection for the route
274 BasicPoolEntry entry = null;
281 while (entry == null) {
300 entry = getFreeEntry(rospl, state);
301 if (entry != null) {
315 entry = createEntry(rospl, operator);
320 entry = createEntry(rospl, operator);
357 } // while no entry
363 return entry;
370 freeEntry(BasicPoolEntry entry, boolean reusable, long validDuration, TimeUnit timeUnit) argument
518 deleteEntry(BasicPoolEntry entry) argument
[all...]
/external/chromium_org/net/http/
H A Dhttp_auth_cache.cc97 return NULL; // No realm entry found.
102 // kept small because AddPath() only keeps the shallowest entry.
146 // Check for existing entry (we will re-use it if present).
147 HttpAuthCache::Entry* entry = Lookup(origin, realm, scheme); local
148 if (!entry) {
163 entry = &entries_.front();
164 entry->origin_ = origin;
165 entry->realm_ = realm;
166 entry->scheme_ = scheme;
167 entry
256 HttpAuthCache::Entry* entry = Lookup(origin, realm, scheme); local
269 Entry* entry = Add(it->origin(), it->realm(), it->scheme(), local
[all...]
/external/chromium_org/third_party/libevent/
H A Devent_rpcgen.py32 def AddEntry(self, entry):
33 if self._tags.has_key(entry.Tag()):
36 entry.Name(), entry.Tag(),
37 self._tags[entry.Tag()], line_count)
39 self._entries.append(entry)
40 self._tags[entry.Tag()] = entry.Name()
41 print >>sys.stderr, ' Added entry: %s' % entry
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dfile_type.js116 * @param {Entry} entry Reference to the file.
120 FileType.getExtension = function(entry) {
122 if (entry.isDirectory)
125 var extensionStartIndex = entry.name.lastIndexOf('.');
127 extensionStartIndex === entry.name.length - 1) {
131 return entry.name.substr(extensionStartIndex);
160 * @param {Entry} entry Reference to the file.
163 FileType.getType = function(entry) {
164 if (entry.isDirectory)
169 if (types[i].pattern.test(entry
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
H A DTrackFragmentRandomAccessBox.java97 Entry entry = new Entry();
99 entry.time = IsoTypeReader.readUInt64(content);
100 entry.moofOffset = IsoTypeReader.readUInt64(content);
102 entry.time = IsoTypeReader.readUInt32(content);
103 entry.moofOffset = IsoTypeReader.readUInt32(content);
105 entry.trafNumber = IsoTypeReaderVariable.read(content, lengthSizeOfTrafNum);
106 entry.trunNumber = IsoTypeReaderVariable.read(content, lengthSizeOfTrunNum);
107 entry.sampleNumber = IsoTypeReaderVariable.read(content, lengthSizeOfSampleNum);
109 entries.add(entry);
127 for (Entry entry
[all...]
/external/chromium_org/remoting/webapp/
H A Dserver_log_entry.js166 * Sets one field in this log entry.
182 var stanza = '<gr:entry ';
204 * Makes a log entry for a change of client session state.
213 var entry = new remoting.ServerLogEntry();
214 entry.set(remoting.ServerLogEntry.KEY_ROLE_,
216 entry.set(remoting.ServerLogEntry.KEY_EVENT_NAME_,
218 entry.set(remoting.ServerLogEntry.KEY_SESSION_STATE_,
221 entry.set(remoting.ServerLogEntry.KEY_CONNECTION_ERROR_,
224 entry.addModeField(mode);
225 return entry;
[all...]
/external/chromium_org/sync/tools/testserver/
H A Dchromiumsync.py166 """An entry should not have more than one data type present."""
204 def GetEntryType(entry):
208 entry: A SyncEntity protobuf object whose type to determine.
210 An enum value from ALL_TYPES if the entry's type can be determined, or None
214 the entry.
216 if entry.server_defined_unique_tag == TOP_LEVEL_FOLDER_TAG:
218 entry_types = GetEntryTypesFromSpecifics(entry.specifics)
586 def _SaveEntry(self, entry):
587 """Insert or update an entry in the change log, and give it a new version.
589 The ID fields of this entry ar
[all...]

Completed in 801 milliseconds

<<11121314151617181920>>