Searched refs:entry (Results 51 - 70 of 70) sorted by relevance

123

/system/media/camera/docs/
H A Dhtml.mako31 .entry { background-color: #f0f0f0 }
71 .entry ul { margin: 0 0 0 0; list-style-position: inside; padding-left: 0.5em; }
72 .entry ul li { padding: 0 0 0 0; margin: 0 0 0 0;}
86 /* TODO for each x.y.z try to link it to the entry */
129 # Number of rows an entry will span
144 % for entry in node.merged_entries:
146 % if entry.deprecated:
149 >${html_anchor(entry)}</li>
220 % for entry in node.merged_entries:
221 ${insert_entry(entry)}
[all...]
/system/netd/server/
H A DNetworkController.cpp122 for (const auto& entry : mNetworkController->mNetworks) {
123 if (entry.second->getType() == Network::VIRTUAL) {
124 if (int ret = modifyFallthrough(entry.first, physicalInterface, permission, add)) {
239 for (const auto& entry : mNetworks) {
240 if (entry.second->hasInterface(interface)) {
241 return entry.first;
477 for (const auto& entry : mNetworks) {
478 if (entry.second->getType() == Network::VIRTUAL) {
479 VirtualNetwork* virtualNetwork = static_cast<VirtualNetwork*>(entry.second);
H A DRouteController.cpp159 for (const auto& entry : interfaceToTable) {
160 addTableName(entry.second, entry.first, &contents);
/system/core/liblog/tests/
H A Dliblog_test.cpp140 ASSERT_EQ(log_msg.entry.pid, pid);
142 if ((log_msg.entry.len != (4 + 1 + 8))
255 ASSERT_EQ(log_msg.entry.pid, pid);
257 if ((log_msg.entry.len != (4 + 1 + 8))
457 if ((log_msg.entry.pid != pid) || (log_msg.id() != LOG_ID_SYSTEM)) {
518 if ((log_msg.entry.pid != pid) || (log_msg.id() != LOG_ID_SYSTEM)) {
H A Dliblog_benchmark.cpp158 if ((log_msg.entry.len != (4 + 1 + 8))
238 if ((log_msg.entry.len != (4 + 1 + 8))
/system/core/libpixelflinger/codeflinger/
H A DCodeCache.cpp172 r = e.entry;
195 mCacheInUse -= e.entry->size();
/system/core/init/
H A Dbootchart.c245 struct dirent* entry; local
249 while ((entry = readdir(dir)) != NULL) {
252 int pid = strtol( entry->d_name, &end, 10);
253 if (end != NULL && end > entry->d_name && *end == 0) {
H A Dinit.c102 /* The last environment entry is reserved to terminate the list */
105 /* Delete any existing entry for this key */
114 /* Add entry if a free slot is available */
117 char *entry = malloc(len); local
118 snprintf(entry, len, "%s=%s", key, val);
119 ENV[n] = entry;
/system/core/libutils/
H A DBasicHashtable.cpp152 size_t BasicHashtableImpl::add(hash_t hash, const void* entry) { argument
183 initializeBucketEntry(*bucket, entry);
229 initializeBucketEntry(*toBucket, fromBucket.entry);
284 initializeBucketEntry(toBucket, fromBucket.entry);
H A DBlobCache.cpp87 // Create a new cache entry.
106 ALOGV("set: created new cache entry with %zu byte key and %zu byte value",
109 // Update the existing cache entry.
127 ALOGV("set: updated existing cache entry with %zu byte key and %zu byte "
145 ALOGV("get: no cache entry found for key of size %zu", keySize);
255 ALOGE("unflatten: not enough room for cache entry headers");
268 ALOGE("unflatten: not enough room for cache entry headers");
290 // Remove a random cache entry until the total cache size gets below half
294 const CacheEntry& entry(mCacheEntries[i]);
295 mTotalSize -= entry
[all...]
H A DProcessCallStack.cpp134 struct dirent entry; local
162 while ((code = readdir_r(dp, &entry, &ep)) == 0 && ep != NULL) {
/system/core/debuggerd/
H A Dtombstone.cpp472 struct logger_entry* entry; local
497 entry = &log_entry.entry_v1;
510 unsigned hdr_size = log_entry.entry.hdr_size;
517 time_t sec = static_cast<time_t>(entry->sec);
529 android_log_processBinaryLogBuffer(entry, &e, g_eventTagMap, buf, sizeof(buf));
531 timeBuf, entry->nsec / 1000000, entry->pid, entry->tid,
558 timeBuf, entry->nsec / 1000000, entry
[all...]
/system/core/logcat/
H A Dlogcat.cpp126 AndroidLogEntry entry; local
130 err = android_log_processBinaryLogBuffer(&buf->entry_v1, &entry,
135 // entry.priority, entry.messageLen, entry.message);
137 err = android_log_processLogBuffer(&buf->entry_v1, &entry);
143 if (android_log_shouldPrintLine(g_logformat, entry.tag, entry.priority)) {
154 bytesWritten = android_log_printLogLine(g_logformat, g_outFD, &entry);
742 "max entry i
[all...]
/system/core/toolbox/upstream-netbsd/usr.bin/du/
H A Ddu.c285 static struct entry { struct
310 struct entry *ohtable;
350 /* Insert the current entry into hashtable */
/system/core/healthd/
H A DBatteryMonitor.cpp384 struct dirent* entry; local
386 while ((entry = readdir(dir))) {
387 const char* name = entry->d_name;
/system/keymaster/include/keymaster/
H A Dgoogle_keymaster.h126 void DeleteOperation(OpTableEntry* entry);
/system/core/fastboot/
H A Dfastboot.c395 zipentry_t entry; local
398 entry = lookup_zipentry(zip, name);
399 if (entry == NULL) {
404 *sz = get_zipentry_size(entry);
414 if (decompress_zipentry(entry, data, datasz)) {
/system/core/libbacktrace/
H A Dbacktrace_test.cpp369 struct dirent* entry; local
370 while ((entry = readdir(tasks_dir)) != NULL) {
372 pid_t tid = strtoul(entry->d_name, &end, 10);
/system/core/sdcard/
H A Dsdcard.c394 struct dirent* entry; local
400 while ((entry = readdir(dir))) {
401 if (!strcasecmp(entry->d_name, name)) {
403 memcpy(actual, entry->d_name, namelen);
/system/core/liblog/
H A Dlog_read.c677 /* NOTE: SOCK_SEQPACKET guarantees we read exactly one full entry */
697 if (log_msg->entry.lid == logger->id) {

Completed in 290 milliseconds

123