/external/syzkaller/sys/linux/gen/ |
arm.go | [all...] |
amd64.go | [all...] |
arm64.go | [all...] |
ppc64le.go | [all...] |
/build/blueprint/bootstrap/ |
cleanup.go | 123 for _, dir := range under { 124 if strings.HasPrefix(filePath, dir) { 162 for dir := filepath.Dir(path); dir != cwd; dir = filepath.Dir(dir) { 163 err = os.Remove(dir)
|
/build/soong/android/ |
proto.go | 35 Dir ModuleGenPath 95 Dir: PathForModuleGen(ctx, "proto"),
|
/build/soong/cc/ |
proto.go | 49 outDir := flags.proto.Dir 123 flags.GlobalFlags = append(flags.GlobalFlags, "-I"+flags.proto.Dir.String())
|
gen.go | 59 Command: "$syspropCmd --header-dir=$headerOutDir --system-header-dir=$systemOutDir " + 60 "--source-dir=$srcOutDir --include-name=$includeName $in", 128 "headerOutDir": filepath.Dir(headerFile.String()), 129 "systemOutDir": filepath.Dir(systemHeaderFile.String()), 130 "srcOutDir": filepath.Dir(cppFile.String()),
|
/build/soong/cmd/dep_fixer/ |
deps_test.go | 75 input: `Project\Dir\Build\Release8\Foo\Foo.res : \ 76 Dir\Library\Foo.rc \ 77 Dir\Library\Version\Bar.h \ 78 Dir\Library\Foo.ico \ 82 Output: `Project\Dir\Build\Release8\Foo\Foo.res`, 84 `Dir\Library\Foo.rc`, 85 `Dir\Library\Version\Bar.h`, 86 `Dir\Library\Foo.ico`,
|
/build/soong/ui/build/paths/ |
logs.go | 47 d, err := os.Open(filepath.Dir(name)) 67 dir := filepath.Dir(name) 69 absDir, err := filepath.Abs(dir)
|
/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.status/ |
status.pass.cpp | 61 const path dir = env.create_dir("dir"); local 62 const path file = env.create_file("dir/file", 42); 63 const path sym = env.create_symlink("dir/file", "sym"); 64 permissions(dir, perms::none); 113 {StaticEnv::Dir, file_type::directory},
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-dwarfdump/ |
llvm-dwarfdump.cpp | 522 for (sys::fs::directory_iterator Dir(BundlePath, EC), DirEnd; 523 Dir != DirEnd && !EC; Dir.increment(EC)) { 524 const std::string &Path = Dir->path();
|
/external/syzkaller/pkg/build/ |
akaros.go | 118 cmd.Dir = kernelDir 120 cmd.Dir = filepath.Join(kernelDir, filepath.FromSlash(runDir))
|
/external/v8/src/debug/ |
interface-types.h | 136 virtual void Dir(const ConsoleCallArguments& args,
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciDxe/ |
Xhci.h | 121 #define USB_REQUEST_TYPE(Dir, Type, Target) \
122 ((UINT8)((((Dir) == EfiUsbDataIn ? 0x01 : 0) << 7) | (Type) | (Target)))
|
/external/compiler-rt/make/ |
lib_platforms.mk | 43 $$(error $(Dir): variable '$$(var)' was not undefined)))
|
/external/syzkaller/prog/ |
prog.go | 131 if t.Dir() == DirOut { 138 if t.Dir() != DirOut { 152 if arg.Type().Dir() == DirOut { 253 if t.Dir() != DirOut {
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/ |
Parsing.py | [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Library/FileExplorerLib/ |
FileExplorer.c | 151 2) update of file content if a dir is selected.
870 EFI_FILE_HANDLE Dir;
876 Dir = FileContext->FileHandle;
881 Status = Dir->Open (
882 Dir,
893 Dir->Close (Dir);
1051 @retval EFI_SUCCESS Get files from current dir successfully.
1052 @return Other value if can't get files from current dir.
[all...] |
/external/llvm/lib/Transforms/Scalar/ |
LoopInterchange.cpp | 149 unsigned Dir = D->getDirection(II); 150 if (Dir == Dependence::DVEntry::LT || 151 Dir == Dependence::DVEntry::LE) 153 else if (Dir == Dependence::DVEntry::GT || 154 Dir == Dependence::DVEntry::GE) 156 else if (Dir == Dependence::DVEntry::EQ) [all...] |
/external/syzkaller/pkg/osutil/ |
osutil.go | 22 // RunCmd runs "bin args..." in dir with timeout and returns its output. 23 func RunCmd(timeout time.Duration, dir, bin string, args ...string) ([]byte, error) { 25 cmd.Dir = dir 118 // FilesExist returns true if all files exist in dir. 120 func FilesExist(dir string, files map[string]bool) bool { 125 if !IsExist(filepath.Join(dir, filepath.FromSlash(f))) { 136 // Linux does not support atomic dir replace, so we copy to tmp dir first. 137 // Then remove dst dir and rename tmp to dst (as atomic as can get on Linux) [all...] |
/external/syzkaller/sys/fuchsia/gen/ |
amd64.go | 43 {Key: StructKey{Name: "arm64_exc_data", Dir: 1}, Desc: &StructDesc{TypeCommon: TypeCommon{TypeName: "arm64_exc_data", TypeSize: 16, ArgDir: 1}, Fields: []Type{ 48 {Key: StructKey{Name: "fd_set", Dir: 2}, Desc: &StructDesc{TypeCommon: TypeCommon{TypeName: "fd_set", TypeSize: 64, ArgDir: 2}, Fields: []Type{ 235 {Key: StructKey{Name: "pipefd", Dir: 1}, Desc: &StructDesc{TypeCommon: TypeCommon{TypeName: "pipefd", TypeSize: 8, ArgDir: 1}, Fields: []Type{ [all...] |
arm64.go | 43 {Key: StructKey{Name: "arm64_exc_data", Dir: 1}, Desc: &StructDesc{TypeCommon: TypeCommon{TypeName: "arm64_exc_data", TypeSize: 16, ArgDir: 1}, Fields: []Type{ 48 {Key: StructKey{Name: "fd_set", Dir: 2}, Desc: &StructDesc{TypeCommon: TypeCommon{TypeName: "fd_set", TypeSize: 64, ArgDir: 2}, Fields: []Type{ 235 {Key: StructKey{Name: "pipefd", Dir: 1}, Desc: &StructDesc{TypeCommon: TypeCommon{TypeName: "pipefd", TypeSize: 8, ArgDir: 1}, Fields: []Type{ [all...] |
/external/clang/lib/Frontend/ |
CompilerInstance.cpp | [all...] |
/device/linaro/bootloader/OpenPlatformPkg/Drivers/Usb/DwUsbDxe/ |
DwUsbDxe.c | 348 IN UINTN Dir
354 Ret = Ep | Dir;
364 if (Dir) { // IN: to host
|