HomeSort by relevance Sort by last modified time
    Searched refs:MAX_PATH (Results 1 - 25 of 242) sorted by null

1 2 3 4 5 6 7 8 910

  /external/fio/os/windows/posix/include/
dirent.h 9 char d_name[MAX_PATH]; /* Name of entry */
15 char dirname[MAX_PATH];
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
VfrCompiler.h 49 INT8 VfrFileName[MAX_PATH];
50 INT8 RecordListFile[MAX_PATH];
51 INT8 PkgOutputFileName[MAX_PATH];
52 INT8 COutputFileName[MAX_PATH];
55 INT8 OutputDirectory[MAX_PATH];
56 INT8 PreprocessorOutputFileName[MAX_PATH];
57 INT8 VfrBaseFileName[MAX_PATH]; // name of input VFR file with no path or extension
EfiVfr.h 26 #define MAX_PATH 255
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/VfrCompile/
EfiVfr.h 40 #define MAX_PATH 255
145 INT8 VfrFileName[MAX_PATH];
146 INT8 VfrListFileName[MAX_PATH];
149 INT8 IfrOutputFileName[MAX_PATH];
150 INT8 OutputDirectory[MAX_PATH];
151 INT8 PreprocessorOutputFileName[MAX_PATH];
152 INT8 VfrBaseFileName[MAX_PATH]; // name of input VFR file with no path or extension
  /external/libusb/msvc/
missing.c 34 static char value[MAX_PATH];
35 TCHAR wValue[MAX_PATH];
36 WCHAR wName[MAX_PATH];
44 if (MultiByteToWideChar(CP_UTF8, 0, name, -1, wName, MAX_PATH) <= 0) {
48 wName[MAX_PATH - 1] = 0; // Be sure it's NUL terminated
73 value, MAX_PATH,
78 value[MAX_PATH - 1] = 0; // Be sure it's NUL terminated
  /external/lzma/CPP/Windows/
DLL.cpp 67 TCHAR s[MAX_PATH + 2];
69 DWORD size = ::GetModuleFileName(hModule, s, MAX_PATH + 1);
70 if (size <= MAX_PATH && size != 0)
79 WCHAR s[MAX_PATH + 2];
81 DWORD size = ::GetModuleFileNameW(hModule, s, MAX_PATH + 1);
82 if (size <= MAX_PATH && size != 0)
FileSystem.cpp 34 TCHAR v[MAX_PATH + 2]; v[0] = 0;
35 TCHAR f[MAX_PATH + 2]; f[0] = 0;
37 v, MAX_PATH,
39 f, MAX_PATH);
46 WCHAR v[MAX_PATH + 2]; v[0] = 0;
47 WCHAR f[MAX_PATH + 2]; f[0] = 0;
49 v, MAX_PATH,
51 f, MAX_PATH);
FileDir.cpp 33 TCHAR s[MAX_PATH + 2];
35 needLength = ::GetWindowsDirectory(s, MAX_PATH + 1);
41 WCHAR s[MAX_PATH + 2];
43 needLength = ::GetWindowsDirectoryW(s, MAX_PATH + 1);
46 return (needLength > 0 && needLength <= MAX_PATH);
55 TCHAR s[MAX_PATH + 2];
57 needLength = ::GetSystemDirectory(s, MAX_PATH + 1);
63 WCHAR s[MAX_PATH + 2];
65 needLength = ::GetSystemDirectoryW(s, MAX_PATH + 1);
68 return (needLength > 0 && needLength <= MAX_PATH);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/
Common.h 32 #ifdef MAX_PATH
33 #undef MAX_PATH
34 #define MAX_PATH 1024
  /external/lzma/C/
DllSecur.c 39 wchar_t buf[MAX_PATH + 100];
56 unsigned len = GetSystemDirectoryW(buf, MAX_PATH + 2);
57 if (len == 0 || len > MAX_PATH)
  /external/skia/tools/
win_dbghelp.cpp 52 char debug_app_name[MAX_PATH] = "";
61 char debug_binaries_path[MAX_PATH] = "";
80 char debug_cdb_path[MAX_PATH] = "";
128 char szPath[MAX_PATH];
129 char szFileName[MAX_PATH];
130 char szFileNameOutput[MAX_PATH];
133 DWORD dwBufferSize = MAX_PATH;
174 char command[MAX_PATH * 4];
221 char app_name[MAX_PATH];
226 char binaries_path[MAX_PATH];
    [all...]
  /external/skqp/tools/
win_dbghelp.cpp 52 char debug_app_name[MAX_PATH] = "";
61 char debug_binaries_path[MAX_PATH] = "";
80 char debug_cdb_path[MAX_PATH] = "";
128 char szPath[MAX_PATH];
129 char szFileName[MAX_PATH];
130 char szFileNameOutput[MAX_PATH];
133 DWORD dwBufferSize = MAX_PATH;
174 char command[MAX_PATH * 4];
221 char app_name[MAX_PATH];
226 char binaries_path[MAX_PATH];
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
EfiVfr.h 22 #define MAX_PATH 255
  /external/clang/tools/libclang/
CIndexer.cpp 56 char path[MAX_PATH];
59 GetModuleFileNameA((HINSTANCE)mbi.AllocationBase, path, MAX_PATH);
62 char w32path[MAX_PATH];
65 cygwin_conv_path(CCP_WIN_A_TO_POSIX, w32path, path, MAX_PATH);
  /external/curl/lib/
curl_path.h 29 # define PATH_MAX MAX_PATH
getenv.c 38 char env[MAX_PATH]; /* MAX_PATH is from windef.h */
  /external/mdnsresponder/mDNSWindows/
loclibrary.c 103 static char appPathNameA[MAX_PATH] = "";
111 char folder[MAX_PATH];
115 GetModuleFileNameA( module, folder, MAX_PATH );
130 snprintf( appPathNameA, MAX_PATH, "%s\\%s", folder, app );
140 static wchar_t appPathNameW[MAX_PATH] = L"";
148 wchar_t folder[MAX_PATH];
152 GetModuleFileNameW( module, folder, MAX_PATH);
167 swprintf( appPathNameW, MAX_PATH, L"%ls\\%ls", folder, app );
180 #define TMP_BUF_SIZE MAX_PATH
188 snprintf(tmpBuffer, MAX_PATH, "%s.Resources\\%s", path, nm)
    [all...]
  /development/host/windows/usb/api/
AdbWinApi.cpp 66 wchar_t path_to_winusb_dll[MAX_PATH+1];
67 if (!GetSystemDirectory(path_to_winusb_dll, MAX_PATH)) {
  /device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/
win_posix.h 24 # ifdef MAX_PATH
25 # define PATH_MAX MAX_PATH
28 # define MAX_PATH _MAX_PATH
  /external/libcxx/test/support/
platform_support.h 78 char Path[MAX_PATH + 1];
79 char FN[MAX_PATH + 1];
80 do { } while (0 == GetTempPath(MAX_PATH+1, Path));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
usbstorioctl.h 3 #ifndef MAX_PATH
4 #define MAX_PATH 260
48 WCHAR wszDeviceInstancePath[(2 * MAX_PATH) + 1];
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
platform_support.h 76 char Path[MAX_PATH + 1];
77 char FN[MAX_PATH + 1];
78 do { } while (0 == GetTempPath(MAX_PATH+1, Path));
  /toolchain/binutils/binutils-2.27/libiberty/
lrealpath.c 139 char buf[MAX_PATH];
141 DWORD len = GetFullPathName (filename, MAX_PATH, buf, &basename);
142 if (len == 0 || len > MAX_PATH - 1)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
smx.h 29 CHAR szHelpFileName[MAX_PATH];
38 WCHAR szHelpFileName[MAX_PATH];
47 CHAR szServerName[MAX_PATH];
52 WCHAR szServerName[MAX_PATH];
73 CHAR szFocus[MAX_PATH];
78 WCHAR szFocus[MAX_PATH];
  /system/extras/ext4_utils/
blk_alloc_to_base_fs.c 24 #define MAX_PATH 4096
40 char filename[MAX_PATH+1], file_version[MAX_FILE_VERSION+1], *spaced_allocs = NULL;
70 while(fscanf(blk_alloc_file, "%" ___STRING(MAX_PATH) "s ", filename) != EOF) {

Completed in 773 milliseconds

1 2 3 4 5 6 7 8 910