HomeSort by relevance Sort by last modified time
    Searched refs:FileHandle (Results 26 - 48 of 48) sorted by null

12

  /frameworks/compile/mclinker/lib/Core/
IRBuilder.cpp 149 m_InputBuilder.setMemory(*input, FileHandle::OpenMode(FileHandle::ReadOnly),
150 FileHandle::Permission(FileHandle::System));
188 m_InputBuilder.setMemory(*input, FileHandle::OpenMode(FileHandle::ReadOnly),
189 FileHandle::Permission(FileHandle::System));
195 Input* IRBuilder::ReadInput(FileHandle& pFileHandle) {
205 m_InputBuilder.setMemory(*input, FileHandle::OpenMode(FileHandle::ReadOnly)
    [all...]
  /external/giflib/
egif_lib.c 57 int FileHandle;
62 FileHandle = open(FileName, O_WRONLY | O_CREAT | O_EXCL,
66 FileHandle = open(FileName, O_WRONLY | O_CREAT | O_TRUNC,
69 if (FileHandle == -1) {
74 GifFile = EGifOpenFileHandle(FileHandle, Error);
76 (void)close(FileHandle);
88 EGifOpenFileHandle(const int FileHandle, int *Error)
117 _setmode(FileHandle, O_BINARY); /* Make sure it is in binary mode. */
120 f = fdopen(FileHandle, "wb"); /* Make it into a stream: */
123 Private->FileHandle = FileHandle
    [all...]
dgif_lib.c 52 int FileHandle;
55 if ((FileHandle = open(FileName, O_RDONLY)) == -1) {
61 GifFile = DGifOpenFileHandle(FileHandle, Error);
72 DGifOpenFileHandle(int FileHandle, int *Error)
83 (void)close(FileHandle);
97 (void)close(FileHandle);
102 _setmode(FileHandle, O_BINARY); /* Make sure it is in binary mode. */
105 f = fdopen(FileHandle, "rb"); /* Make it into a stream: */
109 Private->FileHandle = FileHandle;
    [all...]
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 164 struct FileHandle : CommonHandle {};
171 typedef ScopedHandle<FileHandle> FileScopedHandle;
176 static std::error_code GetFileNameFromHandle(HANDLE FileHandle,
184 Success = ::GetFileSizeEx(FileHandle, &FileSize);
191 ::CreateFileMappingA(FileHandle,
  /external/libvncserver/utils/
git2cl.pl 39 use FileHandle;
60 my $fh = new FileHandle;
297 #($fh,$dummyfh) = FileHandle::pipe;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntddcdvd.h 142 HANDLE FileHandle;
winternl.h 945 NTSTATUS NTAPI NtCreateFile(PHANDLE FileHandle,ACCESS_MASK DesiredAccess,POBJECT_ATTRIBUTES ObjectAttributes,PIO_STATUS_BLOCK IoStatusBlock,PLARGE_INTEGER AllocationSize,ULONG FileAttributes,ULONG ShareAccess,ULONG CreateDisposition,ULONG CreateOptions,PVOID EaBuffer,ULONG EaLength);
946 NTSTATUS NTAPI NtOpenFile(PHANDLE FileHandle,ACCESS_MASK DesiredAccess,POBJECT_ATTRIBUTES ObjectAttributes,PIO_STATUS_BLOCK IoStatusBlock,ULONG ShareAccess,ULONG OpenOptions);
947 NTSTATUS NTAPI NtFsControlFile(HANDLE FileHandle,HANDLE Event,PIO_APC_ROUTINE ApcRoutine,PVOID ApcContext,PIO_STATUS_BLOCK IoStatusBlock,ULONG IoControlCode,PVOID InputBuffer,ULONG InputBufferLength,PVOID OutputBuffer,ULONG OutputBufferLength);
948 NTSTATUS NTAPI NtDeviceIoControlFile(HANDLE FileHandle,HANDLE Event,PIO_APC_ROUTINE ApcRoutine,PVOID ApcContext,PIO_STATUS_BLOCK IoStatusBlock,ULONG IoControlCode,PVOID InputBuffer,ULONG InputBufferLength,PVOID OutputBuffer,ULONG OutputBufferLength);
    [all...]
patchapi.h 169 WINBOOL PATCHAPI GetFilePatchSignatureByHandle(HANDLE FileHandle,ULONG OptionFlags,PVOID OptionData,ULONG IgnoreRangeCount,PPATCH_IGNORE_RANGE IgnoreRangeArray,ULONG RetainRangeCount,PPATCH_RETAIN_RANGE RetainRangeArray,ULONG SignatureBufferSize,PVOID SignatureBuffer);
rtutils.h 142 DWORD WINAPI SetIoCompletionProc(HANDLE FileHandle,LPOVERLAPPED_COMPLETION_ROUTINE CompletionProc);
http.h 111 HANDLE FileHandle;
winioctl.h     [all...]
dbgeng.h 464 STDMETHOD(OpenDumpFileWide)(THIS_ PCWSTR FileName,ULONG64 FileHandle) PURE;
465 STDMETHOD(WriteDumpFileWide)(THIS_ PCWSTR FileName,ULONG64 FileHandle,ULONG Qualifier,ULONG FormatFlags,PCWSTR Comment) PURE;
466 STDMETHOD(AddDumpInformationFileWide)(THIS_ PCWSTR FileName,ULONG64 FileHandle,ULONG Type) PURE;
    [all...]
winbase.h     [all...]
  /external/e2fsprogs/lib/ext2fs/
nt_io.c 61 OUT PHANDLE FileHandle,
73 IN HANDLE FileHandle,
82 IN HANDLE FileHandle,
97 IN HANDLE FileHandle,
112 IN HANDLE FileHandle,
128 IN HANDLE FileHandle,
  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 27 #include "mcld/Support/FileHandle.h"
117 /// Another way to open file manually. Use MCLinker's mcld::FileHandle.
118 Input* ReadInput(FileHandle& pFileHandle);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntifs.h     [all...]
ndis.h     [all...]
ntddk.h     [all...]
wdm.h     [all...]
  /frameworks/compile/mclinker/tools/mcld/
Main.cpp 832 mcld::FileHandle::ReadOnly));
860 mcld::FileHandle::ReadOnly));
949 mcld::FileHandle::ReadOnly));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
_dbg_common.h 12 typedef WINBOOL (CALLBACK *PFIND_DEBUG_FILE_CALLBACK)(HANDLE FileHandle,PCSTR FileName,PVOID CallerData);
13 typedef WINBOOL (CALLBACK *PFIND_DEBUG_FILE_CALLBACKW)(HANDLE FileHandle,PCWSTR FileName,PVOID CallerData);
16 typedef WINBOOL (CALLBACK *PFIND_EXE_FILE_CALLBACK)(HANDLE FileHandle,PCSTR FileName,PVOID CallerData);
17 typedef WINBOOL (CALLBACK *PFIND_EXE_FILE_CALLBACKW)(HANDLE FileHandle,PCWSTR FileName,PVOID CallerData);
96 PIMAGE_DEBUG_INFORMATION IMAGEAPI MapDebugInformation(HANDLE FileHandle,PSTR FileName,PSTR SymbolPath,DWORD ImageBase);
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
dbghelp.h 47 typedef BOOL (CALLBACK *PFIND_DEBUG_FILE_CALLBACK)(HANDLE FileHandle,PSTR FileName,PVOID CallerData);
49 typedef BOOL (CALLBACK *PFIND_EXE_FILE_CALLBACK)(HANDLE FileHandle,PSTR FileName,PVOID CallerData);
126 PIMAGE_DEBUG_INFORMATION IMAGEAPI MapDebugInformation(HANDLE FileHandle,PSTR FileName,PSTR SymbolPath,DWORD ImageBase);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 

Completed in 1047 milliseconds

12