HomeSort by relevance Sort by last modified time
    Searched defs:de (Results 151 - 175 of 278) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/yaffs2/yaffs2/direct/
yaffsfs.c 1180 yaffs_dirent de; /* directory entry being used by this dsc */ member in struct:__anon17475
1304 dsc->de.d_ino = yaffs_GetEquivalentObject(dsc->nextReturn)->objectId;
1305 dsc->de.d_off = dsc->offset++;
1306 yaffs_GetObjectName(dsc->nextReturn,dsc->de.d_name,NAME_MAX+1);
1307 dsc->de.d_reclen = sizeof(struct yaffs_dirent);
1308 retVal = &dsc->de;
  /frameworks/native/cmds/dumpstate/
utils.c 58 struct dirent *de; local
68 while ((de = readdir(d))) {
70 if (de->d_type != DT_DIR || !(userid = atoi(de->d_name))) {
81 struct dirent *de; local
89 while ((de = readdir(d))) {
95 if (!(pid = atoi(de->d_name))) {
124 struct dirent *de; local
137 while ((de = readdir(d))) {
143 if (!(tid = atoi(de->d_name)))
    [all...]
  /frameworks/native/cmds/installd/
utils.c 226 struct dirent *de; local
233 while ((de = readdir(d))) {
234 const char *name = de->d_name;
237 if (exclusion_predicate && exclusion_predicate(name, (de->d_type == DT_DIR))) {
241 if (de->d_type == DT_DIR) {
354 struct dirent *de; local
355 while ((de = readdir(ds))) {
356 if (de->d_type != DT_REG) {
360 const char *name = de->d_name;
428 struct dirent *de; local
623 struct dirent *de; local
736 struct dirent *de; local
    [all...]
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
wifi_hal.cpp 648 struct dirent *de; local
655 while ((de = readdir(d))) {
656 if (de->d_name[0] == '.')
658 if (is_wifi_interface(de->d_name) ) {
672 while ((de = readdir(d))) {
673 if (de->d_name[0] == '.')
675 if (is_wifi_interface(de->d_name)) {
677 if (get_interface(de->d_name, ifinfo) != WIFI_SUCCESS) {
  /system/core/adb/
file_sync_client.c 613 struct dirent *de; local
626 while((de = readdir(d))) {
628 char *name = de->d_name;
639 if (strlen(lpath) + strlen(de->d_name) + 1 > sizeof(stat_path))
642 strcat(stat_path, de->d_name);
usb_linux.c 138 struct dirent *de; local
144 while((de = readdir(busdir)) != 0) {
145 if(badname(de->d_name)) continue;
147 snprintf(busname, sizeof busname, "%s/%s", base, de->d_name);
152 while((de = readdir(devdir))) {
164 if(badname(de->d_name)) continue;
165 snprintf(devname, sizeof devname, "%s/%s", busname, de->d_name);
  /system/core/debuggerd/
tombstone.cpp 400 struct dirent* de; local
401 while ((de = readdir(d)) != NULL) {
403 if (!strcmp(de->d_name, ".") || !strcmp(de->d_name, "..")) {
409 pid_t new_tid = strtoul(de->d_name, &end, 10);
  /system/core/libusbhost/
usbhost.c 97 struct dirent *de; local
103 while ((de = readdir(devdir)) && !done) {
104 if(badname(de->d_name)) continue;
106 snprintf(devname, sizeof(devname), "%s/%s", busname, de->d_name);
120 struct dirent *de; local
126 while ((de = readdir(busdir)) != 0 && !done) {
127 if(badname(de->d_name)) continue;
129 snprintf(busname, sizeof(busname), USB_FS_DIR "/%s", de->d_name);
  /system/netd/server/
CommandListener.cpp 268 struct dirent *de; local
275 while((de = readdir(d))) {
276 if (de->d_name[0] == '.')
278 cli->sendMsg(ResponseCode::InterfaceListResult, de->d_name, false);
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
BootSector.java 3 * 2009,2010 Matthias Treydte <mt@waldheinz.de>
20 package de.waldheinz.fs.fat;
22 import de.waldheinz.fs.BlockDevice;
FatLfnDirectory.java 3 * 2009,2010 Matthias Treydte <mt@waldheinz.de>
20 package de.waldheinz.fs.fat;
22 import de.waldheinz.fs.AbstractFsObject;
23 import de.waldheinz.fs.FsDirectory;
24 import de.waldheinz.fs.FsDirectoryEntry;
371 * @see #linkEntry(de.waldheinz.fs.fat.FatLfnDirectoryEntry)
400 * @see #unlinkEntry(de.waldheinz.fs.fat.FatLfnDirectoryEntry)
SuperFloppyFormatter.java 2 * Copyright (C) 2009,2010 Matthias Treydte <mt@waldheinz.de>
19 package de.waldheinz.fs.fat;
21 import de.waldheinz.fs.BlockDevice;
  /bootable/recovery/
recovery.cpp 433 struct dirent* de; local
440 while ((de = readdir(d)) != NULL) {
441 if (strncmp(de->d_name, "last", 4) == 0) {
443 strcpy(path+path_len, de->d_name);
585 struct dirent* de; local
602 while ((de = readdir(d)) != NULL) {
603 int name_len = strlen(de->d_name);
605 if (de->d_type == DT_DIR) {
607 if (name_len == 1 && de->d_name[0] == '.') continue;
608 if (name_len == 2 && de->d_name[0] == '.' &
    [all...]
  /development/ndk/platforms/android-3/include/linux/
msdos_fs.h 176 struct msdos_dir_entry *de; member in struct:fat_slot_info
  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.cpp 549 int de, k; local
562 if ((de = (int)(d0 >> Exp_shift)))
583 if (de) {
584 *e = de - Bias - (P - 1) + k;
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cdattst.c 62 UDateFormat *def, *fr, *it, *de, *def1, *fr_pat; local
109 de = udat_open(UDAT_LONG, UDAT_LONG, "de_DE", NULL, 0, NULL, 0,&status);
321 udat_set2DigitYearStart(de, 2000.0, &status);
325 if(udat_get2DigitYearStart(de, &status) != 2000)
372 udat_close(de);
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
ustrtest.cpp 982 const UChar de[] = { 0x64, 0x65, 0 }; local
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrDashingEffect.cpp 730 const DashingLineEffect& de = geometryProcessor.cast<DashingLineEffect>(); local
748 vsBuilder->codeAppendf("\t%s = %s;\n", vsCoordName, de.inCoord().c_str());
755 if (GrProcessorEdgeTypeIsAA(de.getEdgeType())) {
778 const DashingLineEffect& de = processor.cast<DashingLineEffect>(); local
779 const SkRect& rect = de.getRect();
780 SkScalar intervalLength = de.getIntervalLength();
792 const DashingLineEffect& de = processor.cast<DashingLineEffect>(); local
793 b->add32(de.getEdgeType());
833 const DashingLineEffect& de = other.cast<DashingLineEffect>(); local
    [all...]
  /external/clang/test/CodeGenCXX/
const-init-cxx11.cpp 165 extern constexpr int (D::*de) = &C::e; member in namespace:MemberPtr
  /external/e2fsprogs/e2fsck/
unix.c 286 struct dirent* de; local
305 while ((de=readdir(d)) != NULL) {
306 if (!strncmp(".", de->d_name, 1))
309 de->d_name);
775 while ((c = getopt (argc, argv, "panyrcC:B:dE:fvtFVM:b:I:j:P:l:L:N:SsDk")) != EOF)
    [all...]
  /external/fio/os/windows/
posix.c 859 static struct dirent de; local
876 StringCchCopyA(de.d_name, MAX_PATH, find_data.cFileName);
877 de.d_ino = 0;
879 return &de;
  /external/icu/icu4c/source/test/cintltst/
cdattst.c 62 UDateFormat *def, *fr, *it, *de, *def1, *fr_pat; local
109 de = udat_open(UDAT_LONG, UDAT_LONG, "de_DE", NULL, 0, NULL, 0,&status);
321 udat_set2DigitYearStart(de, 2000.0, &status);
325 if(udat_get2DigitYearStart(de, &status) != 2000)
372 udat_close(de);
    [all...]
  /external/icu/icu4c/source/test/intltest/
ustrtest.cpp 982 const UChar de[] = { 0x64, 0x65, 0 }; local
    [all...]
  /external/libvorbis/lib/
psy.c 780 float de, coeffi, cx;/* AoTuV */ local
807 de = 1.0-((val-coeffi)*0.005*cx);
814 if(de < 0) de = 0.0001;
818 de = 1.0-((val-coeffi)*0.0003*cx);
824 mdct[i] *= de;
1023 float de=0.1*p->m_val; /* a blend of the AoTuV M2 and M3 code here and below */ local
    [all...]
  /frameworks/base/core/jni/
android_util_Process.cpp 180 struct dirent *de; local
222 while ((de = readdir(d))) {
226 if (de->d_name[0] == '.')
228 t_pid = atoi(de->d_name);
231 ALOGE("Error getting pid for '%s'\n", de->d_name);

Completed in 922 milliseconds

1 2 3 4 5 67 8 91011>>