HomeSort by relevance Sort by last modified time
    Searched defs:FileList (Results 1 - 25 of 33) sorted by null

1 2

  /external/python/cpython2/Lib/idlelib/
FileList.py 6 class FileList:
114 flist = FileList(root)
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
FileList.py 6 class FileList:
114 flist = FileList(root)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
FileList.py 6 class FileList:
114 flist = FileList(root)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
FileList.py 6 class FileList:
114 flist = FileList(root)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
FileList.py 6 class FileList:
114 flist = FileList(root)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
filelist.py 1 """distutils.filelist
3 Provides the FileList class, used for poking about the filesystem
15 class FileList:
31 # ignore argument to FileList, but keep them for backwards
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel3CommandsLib/
Touch.c 77 EFI_SHELL_FILE_INFO *FileList;
82 FileList = NULL;
114 if (EFI_ERROR(gEfiShellProtocol->FindFilesInDir(Handle, &FileList))) {
121 for (Walker = (EFI_SHELL_FILE_INFO *)GetFirstNode(&FileList->Link)
122 ; FileList != NULL && !IsNull(&FileList->Link, &Walker->Link) && !EFI_ERROR(Status)
123 ; Walker = (EFI_SHELL_FILE_INFO *)GetNextNode(&FileList->Link, &Walker->Link)
146 if (FileList != NULL && EFI_ERROR(gEfiShellProtocol->FreeFileList(&FileList))) {
178 EFI_SHELL_FILE_INFO *FileList;
    [all...]
Type.c 186 EFI_SHELL_FILE_INFO *FileList;
194 FileList = NULL;
245 Status = ShellOpenFileMetaArg((CHAR16*)Param, EFI_FILE_MODE_READ, &FileList);
259 if (FileList == NULL || IsListEmpty(&FileList->Link)) {
266 for ( Node = (EFI_SHELL_FILE_INFO*)GetFirstNode(&FileList->Link)
267 ; !IsNull(&FileList->Link, &Node->Link) && !ShellGetExecutionBreakFlag()
268 ; Node = (EFI_SHELL_FILE_INFO*)GetNextNode(&FileList->Link, &Node->Link)
306 // Free the fileList
308 if (FileList != NULL && !IsListEmpty(&FileList->Link)) {
    [all...]
  /external/python/cpython2/Lib/distutils/
filelist.py 1 """distutils.filelist
3 Provides the FileList class, used for poking about the filesystem
15 class FileList:
31 # ignore argument to FileList, but keep them for backwards
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
filelist.py 1 """distutils.filelist
3 Provides the FileList class, used for poking about the filesystem
15 class FileList:
31 # ignore argument to FileList, but keep them for backwards
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
filelist.py 1 """distutils.filelist
3 Provides the FileList class, used for poking about the filesystem
15 class FileList:
31 # ignore argument to FileList, but keep them for backwards
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
filelist.py 1 """distutils.filelist
3 Provides the FileList class, used for poking about the filesystem
15 class FileList:
31 # ignore argument to FileList, but keep them for backwards
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
filelist.py 1 """distutils.filelist
3 Provides the FileList class, used for poking about the filesystem
15 class FileList:
31 # ignore argument to FileList, but keep them for backwards
  /external/libvpx/libvpx/test/
vp9_frame_parallel_test.cc 121 struct FileList {
175 void DecodeFiles(const FileList files[]) {
176 for (const FileList *iter = files; iter->name != NULL; ++iter) {
187 static const FileList files[] = {
208 static const FileList files[] = {
vp9_thread_test.cc 152 struct FileList {
186 void DecodeFiles(const FileList files[]) {
187 for (const FileList *iter = files; iter->name != NULL; ++iter) {
241 static const FileList files[] = { { "vp90-2-08-tile_1x2_frame_parallel.webm",
253 static const FileList files[] = {
305 static const FileList files[] = {
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Rm.c 277 EFI_SHELL_FILE_INFO *FileList;
283 FileList = NULL;
325 Status = ShellOpenFileMetaArg((CHAR16*)Param, EFI_FILE_MODE_WRITE|EFI_FILE_MODE_READ, &FileList);
326 if (EFI_ERROR(Status) || FileList == NULL || IsListEmpty(&FileList->Link)) {
337 for ( Node = (EFI_SHELL_FILE_INFO*)GetFirstNode(&FileList->Link)
338 ; !IsNull(&FileList->Link, &Node->Link) && !ShellGetExecutionBreakFlag()
339 ; Node = (EFI_SHELL_FILE_INFO*)GetNextNode(&FileList->Link, &Node->Link)
356 if (!IsValidDeleteTarget(FileList, Node, Package)) {
366 // Free the fileList
    [all...]
Cp.c 25 @param[in] FileList A LIST_ENTRY* based list of files to move.
40 IN CONST EFI_SHELL_FILE_INFO *FileList,
278 @param[in] FileList A LIST_ENTRY* based list of files to move.
293 IN CONST EFI_SHELL_FILE_INFO *FileList,
324 ASSERT(FileList != NULL);
342 if (EFI_ERROR(ShellIsDirectory(CleanFilePathStr)) && FileList->Link.ForwardLink != FileList->Link.BackLink) {
350 for (Node = (EFI_SHELL_FILE_INFO *)GetFirstNode(&FileList->Link)
351 ; !IsNull(&FileList->Link, &Node->Link)
352 ; Node = (EFI_SHELL_FILE_INFO *)GetNextNode(&FileList->Link, &Node->Link)
    [all...]
Mv.c 446 @param[in] FileList A LIST_ENTRY* based list of files to move
459 IN EFI_SHELL_FILE_INFO *FileList,
477 ASSERT(FileList != NULL);
510 ShellStatus = GetDestinationLocation(CleanFilePathStr, &DestPath, FullCwd, (BOOLEAN)(FileList->Link.ForwardLink == FileList->Link.BackLink), &Attr);
536 for (Node = (EFI_SHELL_FILE_INFO *)GetFirstNode(&FileList->Link)
537 ; !IsNull(&FileList->Link, &Node->Link)
538 ; Node = (EFI_SHELL_FILE_INFO *)GetNextNode(&FileList->Link, &Node->Link)
674 EFI_SHELL_FILE_INFO *FileList;
680 FileList = NULL;
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/EfiRom/
EfiRom.h 97 FILE_LIST *FileList;
EfiRom.c 83 if (mOptions.FileList != NULL) {
84 if ((Ptr0 = strstr ((CONST CHAR8 *) mOptions.FileList->FileName, DEFAULT_OUTPUT_EXTENSION)) != NULL) {
85 DumpImage (mOptions.FileList);
98 strcpy (mOptions.OutFileName, mOptions.FileList->FileName);
120 for (FList = mOptions.FileList; FList != NULL; FList = FList->Next) {
138 for (FList = mOptions.FileList; FList != NULL; FList = FList->Next) {
183 while (mOptions.FileList != NULL) {
184 FList = mOptions.FileList->Next;
185 free (mOptions.FileList);
186 mOptions.FileList = FList;
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel1CommandsLib/
For.c 306 EFI_SHELL_FILE_INFO *FileList;
379 FileList = NULL;
380 Status = ShellOpenFileMetaArg ((CHAR16*)gEfiShellParametersProtocol->Argv[LoopVar], EFI_FILE_MODE_READ, &FileList);
381 if (EFI_ERROR(Status) || FileList == NULL || IsListEmpty(&FileList->Link)) {
386 for (Node = (EFI_SHELL_FILE_INFO *)GetFirstNode(&FileList->Link)
387 ; !IsNull(&FileList->Link, &Node->Link)
388 ; Node = (EFI_SHELL_FILE_INFO *)GetNextNode(&FileList->Link, &Node->Link)
394 ShellCloseFileMetaArg(&FileList);
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
LoadPciRom.c 73 EFI_SHELL_FILE_INFO *FileList;
89 FileList = NULL;
123 Status = ShellOpenFileMetaArg((CHAR16*)Param, EFI_FILE_MODE_WRITE|EFI_FILE_MODE_READ, &FileList);
130 if (ShellStatus == SHELL_SUCCESS && FileList != NULL) {
134 for ( Node = (EFI_SHELL_FILE_INFO*)GetFirstNode(&FileList->Link)
135 ; !IsNull(&FileList->Link, &Node->Link) && !ShellGetExecutionBreakFlag()
136 ; Node = (EFI_SHELL_FILE_INFO*)GetNextNode(&FileList->Link, &Node->Link)
170 if (FileList != NULL && !IsListEmpty(&FileList->Link)) {
171 Status = ShellCloseFileMetaArg(&FileList);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/EfiRom/
EfiRom.c 104 FILE_LIST *FileList;
257 DumpImage (mOptions.FileList);
265 strcpy (mOptions.OutFileName, mOptions.FileList->FileName);
287 for (FList = mOptions.FileList; FList != NULL; FList = FList->Next) {
310 for (FList = mOptions.FileList; FList != NULL; FList = FList->Next) {
358 while (mOptions.FileList != NULL) {
359 FList = mOptions.FileList->Next;
360 free (mOptions.FileList);
361 mOptions.FileList = FList;
1014 FILE_LIST *FileList;
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellBcfgCommandLib/
UefiShellBcfgCommandLib.c 318 EFI_SHELL_FILE_INFO *FileList;
348 FileList = NULL;
433 ShellOpenFileMetaArg ((CHAR16*)File, EFI_FILE_MODE_READ, &FileList);
435 if (FileList == NULL) {
441 } else if (FileList->Link.ForwardLink != FileList->Link.BackLink) {
448 Arg = (EFI_SHELL_FILE_INFO*)GetFirstNode(&FileList->Link);
610 if (FileList != NULL) {
611 ShellCloseFileMetaArg (&FileList);
    [all...]
  /frameworks/base/services/core/java/com/android/server/
DropBoxManagerService.java 96 private FileList mAllFiles = null;
97 private ArrayMap<String, FileList> mFilesByTag = null;
343 FileList list = tag == null ? mAllFiles : mFilesByTag.get(tag);
512 private static final class FileList implements Comparable<FileList> {
516 /** Sorts bigger FileList instances before smaller ones. */
517 public final int compareTo(FileList o) {
734 mAllFiles = new FileList();
765 FileList tagFiles = mFilesByTag.get(entry.tag);
767 tagFiles = new FileList();
    [all...]

Completed in 561 milliseconds

1 2