Searched defs:ent (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_server_Watchdog.cpp81 struct dirent * ent; local
82 while ((ent = readdir(taskdir)) != NULL) {
83 int tid = atoi(ent->d_name);
/frameworks/av/media/libstagefright/id3/
H A Dtestid3.cpp127 struct dirent *ent; local
128 while ((ent = readdir(dir)) != NULL) {
129 if (!strcmp(".", ent->d_name) || !strcmp("..", ent->d_name)) {
136 strcat(newPath, ent->d_name);
138 if (ent->d_type == DT_DIR) {
140 } else if (ent->d_type == DT_REG) {
141 size_t len = strlen(ent->d_name);
144 && !strcasecmp(ent->d_name + len - 4, ".mp3")) {
/frameworks/base/tools/aapt/
H A DStringPool.cpp155 entry& ent = mEntries.editItemAt(eidx); local
158 configTypeName->string(), ent.configTypeName.string());
160 if (ent.configTypeName.size() <= 0) {
161 ent.configTypeName = *configTypeName;
162 } else if (ent.configTypeName != *configTypeName) {
163 ent.configTypeName = " ";
169 entry& ent = mEntries.editItemAt(eidx); local
171 for (addPos=0; addPos<ent.configs.size(); addPos++) {
172 int cmp = ent.configs.itemAt(addPos).compareLogical(*config);
178 ent
576 entry& ent = mEntries.editItemAt(mEntryArray[i]); variable
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp255 struct hostent *ent = gethostbyname(host.c_str()); local
256 if (ent == NULL) {
279 remote.sin_addr.s_addr = *(in_addr_t *)ent->h_addr;
H A DMyHandler.h338 struct hostent *ent = gethostbyname(mSessionHost.c_str()); local
339 if (ent == NULL) {
346 addr.sin_addr.s_addr = *(in_addr_t *)ent->h_addr;
/frameworks/av/media/libstagefright/foundation/
H A DANetworkSession.cpp1044 struct hostent *ent= gethostbyname(remoteHost); local
1045 if (ent == NULL) {
1050 addr.sin_addr.s_addr = *(in_addr_t *)ent->h_addr;
1093 struct hostent *ent= gethostbyname(remoteHost); local
1094 if (ent == NULL) {
1099 remoteAddr.sin_addr.s_addr = *(in_addr_t *)ent->h_addr;
1186 struct hostent *ent = gethostbyname(remoteHost); local
1187 if (ent == NULL) {
1190 remoteAddr.sin_addr.s_addr = *(in_addr_t *)ent->h_addr;
/frameworks/native/cmds/installd/
H A Dutils.cpp103 struct dirent* ent; local
104 while ((ent = readdir(dir))) {
105 if (ent->d_ino == ce_data_inode) {
106 auto resolved = StringPrintf("%s/%s", user_path.c_str(), ent->d_name);
286 struct dirent* ent; local
287 while ((ent = readdir(dir))) {
288 if (ent->d_type != DT_DIR) {
293 userid_t user = strtol(ent->d_name, &end, 10);
713 struct dirent* ent; local
714 while ((ent
[all...]
/frameworks/base/core/java/android/content/
H A DIntentFilter.java1112 public final void addDataAuthority(AuthorityEntry ent) { argument
1115 mDataAuthorities.add(ent);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp471 struct dirent *ent; local
472 while((ent = readdir(d)) != NULL) {
473 if (strcmp(ent->d_name,".") && strcmp(ent->d_name,"..")) {
474 snprintf(buffer, SIZE, "/proc/%d/fd/%s", getpid(), ent->d_name);
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp7231 const ResTable_entry* ent = (const ResTable_entry*) local
7239 uintptr_t esize = dtohs(ent->size);
7253 if ((dtohs(ent->flags)&ResTable_entry::FLAG_COMPLEX) != 0) {
7255 bagPtr = (const ResTable_map_entry*)ent;
7258 (((const uint8_t*)ent) + esize);
7265 if ((dtohs(ent->flags)&ResTable_entry::FLAG_PUBLIC) != 0) {
7276 const uint8_t* baseMapPtr = (const uint8_t*)ent;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBar.java1853 Entry ent = activeNotifications.get(i);
1854 if (ent.row.isDismissed() || ent.row.isRemoved()) {
1859 int userId = ent.notification.getUserId();
1864 boolean needsRedaction = needsRedaction(ent);
1869 updatePublicContentView(ent, ent.notification);
1871 ent.row.setSensitive(sensitive, deviceSensitive);
1872 ent.row.setNeedsRedaction(needsRedaction);
1873 if (mGroupManager.isChildInGroupWithSummary(ent
1962 needsRedaction(Entry ent) argument
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...

Completed in 5838 milliseconds