Searched refs:virtualPath (Results 1 - 6 of 6) sorted by relevance

/external/srec/portable/src/
H A DPANSIFileSystem.c26 ESR_ReturnCode PANSIFileSystemAddPath(const LCHAR* virtualPath, const LCHAR* realPath) argument
28 return ((PANSIFileSystem*) PANSIFileSystemSingleton)->addPath(PANSIFileSystemSingleton, virtualPath, realPath);
31 ESR_ReturnCode PANSIFileSystemRemovePath(const LCHAR* virtualPath) argument
33 return ((PANSIFileSystem*) PANSIFileSystemSingleton)->removePath(PANSIFileSystemSingleton, virtualPath);
H A DPANSIFileSystemImpl.c101 ESR_ReturnCode PANSIFileSystemAddPathImpl(PFileSystem* self, const LCHAR* virtualPath, const LCHAR* realPath) argument
110 if (virtualPath == NULL || realPath == NULL)
117 len = LSTRLEN(virtualPath) + 1;
118 if (virtualPath[LSTRLEN(virtualPath)-1] != L('/'))
127 LSTRCPY(key, virtualPath);
179 ESR_ReturnCode PANSIFileSystemRemovePathImpl(PFileSystem* self, const LCHAR* virtualPath) argument
188 if (virtualPath == NULL)
195 LSTRCPY(path, virtualPath);
/external/srec/portable/include/
H A DPANSIFileSystem.h61 * @param virtualPath PFileSystem path
63 * @return ESR_INVALID_ARGUMENT if self or virtualPath or realPath is null or realPath is not a valid path;
64 * ESR_OUT_OF_MEMORY if the system is out of memory; ESR_IDENTIFIER_COLLISION if virtualPath is already mounted.
66 ESR_ReturnCode(*addPath)(PFileSystem* self, const LCHAR* virtualPath, const LCHAR* realPath);
72 * @param virtualPath PFileSystem path
73 * @return ESR_INVALID_ARGUMENT if self or virtualPath is null or virtualPath is not mounted
75 ESR_ReturnCode(*removePath)(PFileSystem* self, const LCHAR* virtualPath);
113 * @param virtualPath PFileSystem path
115 * @return ESR_INVALID_ARGUMENT if self or virtualPath o
[all...]
H A DPANSIFileSystemImpl.h41 * [virtualPath, realPath] mapping.
66 PORTABLE_API ESR_ReturnCode PANSIFileSystemAddPathImpl(PFileSystem* self, const LCHAR* virtualPath, const LCHAR* realPath);
71 PORTABLE_API ESR_ReturnCode PANSIFileSystemRemovePathImpl(PFileSystem* self, const LCHAR* virtualPath);
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DDataTransferItemFileSystem.cpp76 String virtualPath = DOMFilePath::append("/", toFile(file)->name()); local
84 return static_cast<Entry*>(DirectoryEntry::create(domFileSystem, virtualPath).get());
85 return static_cast<Entry*>(FileEntry::create(domFileSystem, virtualPath).get());
H A DHTMLInputElementFileSystem.cpp70 String virtualPath = DOMFilePath::append("/", file->name()); local
72 entries.append(DirectoryEntry::create(filesystem, virtualPath));
74 entries.append(FileEntry::create(filesystem, virtualPath));

Completed in 113 milliseconds