HomeSort by relevance Sort by last modified time
    Searched full:fullpath (Results 26 - 50 of 429) sorted by null

12 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dynload_beos.c 163 char fullpath[PATH_MAX]; local
175 (void)getcwd( fullpath, PATH_MAX );
176 (void)strncat( fullpath, "/", PATH_MAX );
177 (void)strncat( fullpath, pathname, PATH_MAX );
180 printf( "load_add_on( %s )\n", fullpath );
183 (void)strcpy( fullpath, pathname );
186 the_id = load_add_on( fullpath );
193 printf( "load_add_on( %s ) failed", fullpath );
199 fullpath );
203 fullpath );
    [all...]
  /external/ltp/testcases/kernel/controllers/libcontrollers/
libcontrollers.c 53 if (lstat(fullpath, &statbuffer) < 0) {
54 error_function("Can not read stat for file ", fullpath);
64 && (strcmp(fullpath, "/dev/cpuctl/cpu.shares") != 0)
66 *shares_pointer += read_shares_file(fullpath);
73 * of fullpath to append new files names
76 path_pointer = fullpath + strlen(fullpath);
80 if ((dp = opendir(fullpath)) == NULL) { /* Error in opening directory */
81 error_function("Can't open ", fullpath);
94 strcpy(path_pointer, dir_pointer->d_name); /* append name to fullpath */
    [all...]
  /external/python/cpython2/Python/
dynload_beos.c 163 char fullpath[PATH_MAX]; local
175 (void)getcwd( fullpath, PATH_MAX );
176 (void)strncat( fullpath, "/", PATH_MAX );
177 (void)strncat( fullpath, pathname, PATH_MAX );
180 printf( "load_add_on( %s )\n", fullpath );
183 (void)strcpy( fullpath, pathname );
186 the_id = load_add_on( fullpath );
193 printf( "load_add_on( %s ) failed", fullpath );
199 fullpath );
203 fullpath );
    [all...]
  /prebuilts/go/darwin-x86/src/os/
stat_windows.go 80 fs.path, err = syscall.FullPath(fs.path)
82 return nil, &PathError{"FullPath", name, err}
137 fullpath := name
138 if !isAbs(fullpath) {
139 fullpath, err = syscall.FullPath(fullpath)
141 return nil, &PathError{"FullPath", name, err}
146 path: fullpath,
181 fs.path, e = syscall.FullPath(fs.path
    [all...]
  /prebuilts/go/linux-x86/src/os/
stat_windows.go 80 fs.path, err = syscall.FullPath(fs.path)
82 return nil, &PathError{"FullPath", name, err}
137 fullpath := name
138 if !isAbs(fullpath) {
139 fullpath, err = syscall.FullPath(fullpath)
141 return nil, &PathError{"FullPath", name, err}
146 path: fullpath,
181 fs.path, e = syscall.FullPath(fs.path
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfParser.py 113 self.FullPath = Filename
117 GlobalData.gINF_MODULE_NAME = self.FullPath
324 File=self.FullPath,
398 File=self.FullPath)
403 File=self.FullPath)
411 File=self.FullPath,
428 File=self.FullPath,
454 File=self.FullPath,
468 File=self.FullPath, Line=LineNo,
480 self.FullPath,
    [all...]
  /external/lzma/CPP/7zip/Bundles/SFXSetup/
ExtractCallbackSfx.cpp 86 FString fullPath = _directoryPath;
89 fullPath += us2fs(dirPathParts[i]);
90 CreateDir(fullPath);
91 fullPath.Add_PathSepar();
104 UString fullPath;
109 fullPath = _itemDefaultName;
114 fullPath.SetFromBstr(prop.bstrVal);
116 _filePath = fullPath;
152 SplitPathToParts(fullPath, pathParts);
156 UString processedPath = fullPath;
    [all...]
  /external/python/cpython2/Tools/scripts/
findnocoding.py 52 def needs_declaration(fullpath):
54 infile = open(fullpath, 'rU')
101 for fullpath in pysource.walk_python_files(args, is_python):
103 print "Testing for coding: %s" % fullpath
104 result = needs_declaration(fullpath)
106 print fullpath
  /external/python/cpython3/Tools/scripts/
findnocoding.py 52 def needs_declaration(fullpath):
54 infile = open(fullpath, 'rb')
102 for fullpath in pysource.walk_python_files(args, is_python):
104 print("Testing for coding: %s" % fullpath)
105 result = needs_declaration(fullpath)
107 print(fullpath)
  /external/dtc/
checks.c 103 TRACE(c, "%s", node->fullpath);
175 propname, node->fullpath);
194 propname, node->fullpath);
216 child->fullpath);
231 prop->name, node->fullpath);
250 node->name[n], node->fullpath);
261 node->name[n], node->fullpath);
270 node->fullpath);
289 node->fullpath);
293 node->fullpath);
    [all...]
  /external/autotest/client/profilers/powertop/src/
urbnum.c 66 char fullpath[4096]; local
73 sprintf(fullpath, "%s/power/active_duration", path);
74 file = fopen(fullpath, "r");
80 sprintf(fullpath, "%s/power/connected_duration", path);
81 file = fopen(fullpath, "r");
100 sprintf(fullpath, "%s/product", path);
101 file = fopen(fullpath, "r");
107 sprintf(fullpath, "%s/manufacturer", path);
108 file = fopen(fullpath, "r");
  /external/autotest/client/tests/unixbench/
unixbench.patch 42 - execl(fullpath, fullpath, "0", dur_str, count_str, start_str, 0);
43 + execl(fullpath, fullpath, "0", dur_str, count_str, start_str, (char *)0);
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
FileSystemResourceLoader.java 77 String fullPath;
79 fullPath = file.getCanonicalPath();
81 fullPath = file.getAbsolutePath();
83 return String.format("%s@%s", fullPath, file.lastModified());
  /external/lzma/CPP/7zip/UI/Common/
ArchiveOpenCallback.cpp 109 FString fullPath;
110 if (!NFile::NName::GetFullPath(_folderPrefix, us2fs(name2), fullPath))
112 if (!_fileInfo.Find(fullPath))
118 if (!inFile->Open(fullPath))
  /external/python/cpython3/Tools/msi/
msi.targets 12 <_Source>%(Source)$([msbuild]::MakeRelative(%(SourceBase), %(FullPath)))</_Source>
13 <_Target>%(Target_)$([msbuild]::MakeRelative(%(TargetBase), %(FullPath)))</_Target>
16 <_CatalogFiles Include="@(InstallFiles)" Condition="%(InstallFiles.IncludeInCat) and ''!=$([System.IO.File]::ReadAllText(%(InstallFiles.FullPath)))" />
43 @(_CatalogFiles->'&lt;HASH&gt;%(Filename)%(Extension)=%(FullPath)','
60 <_Content>$([System.IO.File]::ReadAllText(%(WxlTemplate.FullPath)).Replace(`{{ShortVersion}}`, `$(MajorVersionNumber).$(MinorVersionNumber)$(PyTestExt)`).Replace(`{{LongVersion}}`, `$(PythonVersion)$(PyTestExt)`).Replace(`{{Bitness}}`, `$(Bitness)`))</_Content>
79 <Exec Command="$(_SignCommand) @(SignCabs->'&quot;%(FullPath)&quot;',' ')" ContinueOnError="false" />
83 <Exec Command="$(_SignCommand) @(SignMsi->'&quot;%(FullPath)&quot;',' ')" ContinueOnError="false" />
87 <Exec Command="$(_SignCommand) @(SignBundleEngine->'&quot;%(FullPath)&quot;',' ')" ContinueOnError="false" />
91 <Exec Command="$(_SignCommand) @(SignBundle->'&quot;%(FullPath)&quot;',' ')" ContinueOnError="false" />
  /external/icu/icu4c/source/tools/toolutil/
pkg_gencmn.cpp 411 char *fullPath = NULL;
429 fullPath = pathToFullPath(filename, source);
442 files[fileCount].pathname=fullPath;
447 file=T_FileStream_open(fullPath, "rb");
449 fprintf(stderr, "gencmn: unable to open listed file %s\n", fullPath);
456 fprintf(stderr, "gencmn: unable to get length of listed file %s\n", fullPath);
465 printf("%s ignored (size %ld > %ld)\n", fullPath, (long)length, (long)maxSize);
515 char *fullPath;
520 fullPath = (char *)uprv_malloc(newLength);
522 uprv_strcpy(fullPath, source)
    [all...]
  /frameworks/base/core/jni/
android_graphics_drawable_AnimatedVectorDrawable.cpp 127 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(nativePtr);
128 FullPathColorPropertyValuesHolder* newHolder = new FullPathColorPropertyValuesHolder(fullPath,
135 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(nativePtr);
136 FullPathPropertyValuesHolder* newHolder = new FullPathPropertyValuesHolder(fullPath,
  /frameworks/rs/rsov/compiler/
Builtin_test.cpp 32 const std::string &fullPath = getAbsolutePath(testDataPath + testFile);
33 auto words = readFile<uint32_t>(fullPath);
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Advanced/ChameleonMan/OGLES2/Build/WindowsVC2010/
OGLES2ChameleonMan.vcxproj 190 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -o "..\..\Content\ChameleonScene.cpp" "%(FullPath)"</Command>
193 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -o "..\..\Content\ChameleonScene.cpp" "%(FullPath)"</Command>
196 <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -o "..\..\Content\ChameleonScene.cpp" "%(FullPath)"</Command>
199 <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -o "..\..\Content\ChameleonScene.cpp" "%(FullPath)"</Command>
206 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -s -o "..\..\Content\SkinnedVertShader.cpp" "%(FullPath)"</Command>
209 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -s -o "..\..\Content\SkinnedVertShader.cpp" "%(FullPath)"</Command>
212 <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -s -o "..\..\Content\SkinnedVertShader.cpp" "%(FullPath)"</Command>
215 <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -s -o "..\..\Content\SkinnedVertShader.cpp" "%(FullPath)"</Command>
220 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -s -o "..\..\Content\SkinnedFragShader.cpp" "%(FullPath)"</Command>
223 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -s -o "..\..\Content\SkinnedFragShader.cpp" "%(FullPath)"</Command>
    [all...]
  /external/llvm/tools/llvm-cov/
SourceCoverageView.cpp 35 SmallString<256> FullPath;
38 FullPath.append(Opts.ShowOutputDirectory);
41 sys::path::append(FullPath, getCoverageDir());
45 sys::path::append(FullPath, sys::path::relative_path(ParentPath));
48 sys::path::append(FullPath, PathFilename);
50 return FullPath.str();
59 std::string FullPath = getOutputPath(Path, Extension, InToplevel, false);
61 auto ParentDir = sys::path::parent_path(FullPath);
66 raw_ostream *RawStream = new raw_fd_ostream(FullPath, E, sys::fs::F_RW);
  /hardware/interfaces/drm/1.0/vts/functional/
vendor_modules.cpp 43 string fullpath = directory + "/" + entry->d_name; local
44 if (endsWith(fullpath, ".so")) {
45 mPathList.push_back(fullpath);
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Ls.c 551 CHAR16 *FullPath;
557 FullPath = NULL;
665 ASSERT(FullPath == NULL);
667 StrnCatGrow(&FullPath, NULL, CurDir, 0);
668 Size = FullPath != NULL? StrSize(FullPath) : 0;
669 StrnCatGrow(&FullPath, &Size, L"\\", 0);
681 ASSERT((FullPath == NULL && Size == 0) || (FullPath != NULL));
683 StrnCatGrow(&FullPath, &Size, gEfiShellProtocol->GetCurDir(NULL), 0);
    [all...]
  /external/autotest/client/cros/video/
chameleon_screenshot_capturer.py 93 @returns a fullpath to the image just captured.
97 fullpath = os.path.join(self.dest_dir, filename)
103 img.crop(box).save(fullpath)
105 return fullpath
  /external/icu/icu4c/source/layoutex/
layoutex.vcxproj 270 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\layout
273 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\layout
276 <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">copy "%(FullPath)" ..\..\include\layout
279 <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">copy "%(FullPath)" ..\..\include\layout
284 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\layout
287 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\layout
290 <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">copy "%(FullPath)" ..\..\include\layout
293 <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">copy "%(FullPath)" ..\..\include\layout
298 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\layout
301 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\layou
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/ColourGrading/OGLES3/Build/WindowsVC2010/
OGLES3ColourGrading.vcxproj 192 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -o "..\..\Content\Mask.cpp" "%(FullPath)"</Command>
195 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -o "..\..\Content\Mask.cpp" "%(FullPath)"</Command>
198 <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -o "..\..\Content\Mask.cpp" "%(FullPath)"</Command>
201 <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -o "..\..\Content\Mask.cpp" "%(FullPath)"</Command>
208 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -o "..\..\Content\identity.cpp" "%(FullPath)"</Command>
211 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -o "..\..\Content\identity.cpp" "%(FullPath)"</Command>
214 <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -o "..\..\Content\identity.cpp" "%(FullPath)"</Command>
217 <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -o "..\..\Content\identity.cpp" "%(FullPath)"</Command>
222 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -o "..\..\Content\cooler.cpp" "%(FullPath)"</Command>
225 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">"$(ProjectDir)..\..\..\..\..\..\Utilities\Filewrap\Windows_x86_32\Filewrap.exe" -o "..\..\Content\cooler.cpp" "%(FullPath)"</Command>
    [all...]

Completed in 1188 milliseconds

12 3 4 5 6 7 8 91011>>