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

1 2

  /external/python/cpython2/Lib/idlelib/
FileList.py 6 class FileList:
114 flist = FileList(root)
  /external/python/cpython3/Lib/idlelib/
filelist.py 7 class FileList:
120 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 75 EFI_SHELL_FILE_INFO *FileList;
80 FileList = NULL;
112 if (EFI_ERROR(gEfiShellProtocol->FindFilesInDir(Handle, &FileList))) {
119 for (Walker = (EFI_SHELL_FILE_INFO *)GetFirstNode(&FileList->Link)
120 ; FileList != NULL && !IsNull(&FileList->Link, &Walker->Link) && !EFI_ERROR(Status)
121 ; Walker = (EFI_SHELL_FILE_INFO *)GetNextNode(&FileList->Link, &Walker->Link)
144 if (FileList != NULL && EFI_ERROR(gEfiShellProtocol->FreeFileList(&FileList))) {
176 EFI_SHELL_FILE_INFO *FileList;
    [all...]
Type.c 185 EFI_SHELL_FILE_INFO *FileList;
193 FileList = NULL;
244 Status = ShellOpenFileMetaArg((CHAR16*)Param, EFI_FILE_MODE_READ, &FileList);
258 if (FileList == NULL || IsListEmpty(&FileList->Link)) {
265 for ( Node = (EFI_SHELL_FILE_INFO*)GetFirstNode(&FileList->Link)
266 ; !IsNull(&FileList->Link, &Node->Link) && !ShellGetExecutionBreakFlag()
267 ; Node = (EFI_SHELL_FILE_INFO*)GetNextNode(&FileList->Link, &Node->Link)
305 // Free the fileList
307 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
  /external/python/cpython3/Lib/distutils/
filelist.py 1 """distutils.filelist
3 Provides the FileList class, used for poking about the filesystem
14 class FileList:
30 # 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
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Rm.c 274 EFI_SHELL_FILE_INFO *FileList;
280 FileList = NULL;
322 Status = ShellOpenFileMetaArg((CHAR16*)Param, EFI_FILE_MODE_WRITE|EFI_FILE_MODE_READ, &FileList);
323 if (EFI_ERROR(Status) || FileList == NULL || IsListEmpty(&FileList->Link)) {
334 for ( Node = (EFI_SHELL_FILE_INFO*)GetFirstNode(&FileList->Link)
335 ; !IsNull(&FileList->Link, &Node->Link) && !ShellGetExecutionBreakFlag()
336 ; Node = (EFI_SHELL_FILE_INFO*)GetNextNode(&FileList->Link, &Node->Link)
353 if (!IsValidDeleteTarget(FileList, Node, Package)) {
363 // Free the fileList
    [all...]
Cp.c 25 @param[in] FileList A LIST_ENTRY* based list of files to move.
39 IN CONST EFI_SHELL_FILE_INFO *FileList,
279 @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 509 @param[in] FileList A LIST_ENTRY* based list of files to move
521 IN EFI_SHELL_FILE_INFO *FileList,
539 ASSERT(FileList != NULL);
575 ShellStatus = GetDestinationLocation(CleanFilePathStr, &DestPath, FullCwd, (BOOLEAN)(FileList->Link.ForwardLink == FileList->Link.BackLink), &Attr);
601 for (Node = (EFI_SHELL_FILE_INFO *)GetFirstNode(&FileList->Link)
602 ; !IsNull(&FileList->Link, &Node->Link)
603 ; Node = (EFI_SHELL_FILE_INFO *)GetNextNode(&FileList->Link, &Node->Link)
739 EFI_SHELL_FILE_INFO *FileList;
745 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 if (mOptions.FileList != NULL) {
99 strcpy (mOptions.OutFileName, mOptions.FileList->FileName);
122 for (FList = mOptions.FileList; FList != NULL; FList = FList->Next) {
140 for (FList = mOptions.FileList; FList != NULL; FList = FList->Next) {
182 while (mOptions.FileList != NULL) {
183 FList = mOptions.FileList->Next;
184 free (mOptions.FileList);
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
LoadPciRom.c 71 EFI_SHELL_FILE_INFO *FileList;
87 FileList = NULL;
121 Status = ShellOpenFileMetaArg((CHAR16*)Param, EFI_FILE_MODE_WRITE|EFI_FILE_MODE_READ, &FileList);
128 if (ShellStatus == SHELL_SUCCESS && FileList != NULL) {
132 for ( Node = (EFI_SHELL_FILE_INFO*)GetFirstNode(&FileList->Link)
133 ; !IsNull(&FileList->Link, &Node->Link) && !ShellGetExecutionBreakFlag()
134 ; Node = (EFI_SHELL_FILE_INFO*)GetNextNode(&FileList->Link, &Node->Link)
172 if (FileList != NULL && !IsListEmpty(&FileList->Link)) {
173 Status = ShellCloseFileMetaArg(&FileList);
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel1CommandsLib/
For.c 301 EFI_SHELL_FILE_INFO *FileList;
374 FileList = NULL;
375 Status = ShellOpenFileMetaArg ((CHAR16*)gEfiShellParametersProtocol->Argv[LoopVar], EFI_FILE_MODE_READ, &FileList);
376 if (EFI_ERROR(Status) || FileList == NULL || IsListEmpty(&FileList->Link)) {
381 for (Node = (EFI_SHELL_FILE_INFO *)GetFirstNode(&FileList->Link)
382 ; !IsNull(&FileList->Link, &Node->Link)
383 ; Node = (EFI_SHELL_FILE_INFO *)GetNextNode(&FileList->Link, &Node->Link)
389 ShellCloseFileMetaArg(&FileList);
  /external/libvpx/libvpx/test/
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/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 314 EFI_SHELL_FILE_INFO *FileList;
344 FileList = NULL;
429 ShellOpenFileMetaArg ((CHAR16*)File, EFI_FILE_MODE_READ, &FileList);
431 if (FileList == NULL) {
437 } else if (FileList->Link.ForwardLink != FileList->Link.BackLink) {
444 Arg = (EFI_SHELL_FILE_INFO*)GetFirstNode(&FileList->Link);
598 if (FileList != NULL) {
599 ShellCloseFileMetaArg (&FileList);
    [all...]

Completed in 602 milliseconds

1 2