/external/ltp/testscripts/ |
D | test_fs_bind.sh | 83 sandbox="${TMPDIR}/sandbox" 103 mkdir "${sandbox}" >& /dev/null 104 if [ ! -d "${sandbox}" -o ! -x "${sandbox}" ]; then 105 tst_brkm TBROK true "$0: failed to make directory \"${sandbox}\"" 109 mount --bind "${sandbox}" "${sandbox}" >& /dev/null 111 tst_brkm TBROK true "$0: failed to perform bind mount on directory \"${sandbox}\"" 115 mount --make-private "${sandbox}" >& /dev/null 117 tst_brkm TBROK true "$0: failed to make private mountpoint on directory \"${sandbox}\"" 124 pushd "${sandbox}" > /dev/null && { 162 …mount --make-shared "${sandbox}" > /dev/null 2>&1 || "${FS_BIND_ROOT}/bin/smount" "${sandbox}" sha… [all …]
|
/external/selinux/sandbox/ |
D | Makefile | 11 SHAREDIR ?= $(PREFIX)/share/sandbox 16 all: sandbox seunshare sandboxX.sh start 22 install -m 755 sandbox $(BINDIR) 24 install -m 644 sandbox.8 $(MANDIR)/man8/ 27 install -m 644 sandbox.5 $(MANDIR)/man5/ 34 install -m 644 sandbox.conf $(SYSCONFDIR)/sandbox
|
D | sandbox.conf | 2 NAME=sandbox
|
D | sandbox.init | 24 LOCKFILE=/var/lock/subsys/sandbox
|
/external/robolectric-shadows/junit/src/main/java/org/robolectric/internal/ |
D | SandboxTestRunner.java | 139 Sandbox sandbox = new Sandbox(sandboxClassLoader); 140 configureShadows(method, sandbox); 141 return sandbox; 188 protected void configureShadows(FrameworkMethod method, Sandbox sandbox) { 199 sandbox.replaceShadowMap(shadowMap); 201 sandbox.configure(createClassHandler(shadowMap, sandbox), getInterceptors()); 214 Sandbox sandbox = getSandbox(method); 219 configureShadows(method, sandbox); 222 Thread.currentThread().setContextClassLoader(sandbox.getRobolectricClassLoader()); 225 Class bootstrappedTestClass = sandbox.bootstrappedClass(getTestClass().getJavaClass()); [all …]
|
/external/swiftshader/third_party/subzero/pydir/ |
D | crosstest.py | 102 if args.sandbox: 151 '--sandbox=' + str(args.sandbox), 162 if args.target == 'mips32' and args.sandbox 226 if args.sandbox else 266 if not args.sandbox and not args.nonsfi: 275 elif args.sandbox:
|
D | szbuild.py | 305 native = not args.sandbox and not args.nonsfi 307 if args.sandbox or args.nonsfi: 359 (['-sandbox'] if args.sandbox else []) + 362 args.enable_block_profile and not args.sandbox 434 'x8664': 'elf32_x86_64' if not args.sandbox else 'elf_x86_64', 454 if args.sandbox:
|
D | szbuild_spec2k.py | 50 'pnacl.opt.{target}' if args.sandbox else 68 setup = 'Setup' + ('Pnacl' if args.sandbox else
|
D | run-pnacl-sz.py | 151 if args.sandbox: 202 TargetAssemblerFlags(args.target, args.sandbox) +
|
/external/autotest/client/cros/ |
D | webstore_test.py | 105 TestEnv.sandbox: 'staging.sandbox', 110 TestEnv.sandbox: 'download-staging.sandbox', 130 def initialize(self, test_env=TestEnv.sandbox, 148 TestEnv.sandbox:
|
/external/autotest/client/site_tests/security_SandboxStatus/ |
D | control | 15 Checks the status of the sandbox by looking at chrome://sandbox and
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowNewPackageManagerTest.java | 28 protected void beforeTest(Sandbox sandbox, FrameworkMethod method, Method bootstrappedMethod) in beforeTest() argument 31 super.beforeTest(sandbox, method, bootstrappedMethod); in beforeTest()
|
/external/robolectric-shadows/robolectric/ |
D | build.gradle | 28 compile project(":sandbox") 71 "org.robolectric:sandbox:${apiCompatVersion}@jar", 82 project(":sandbox"),
|
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/ |
D | ParameterizedRobolectricTestRunner.java | 105 SdkEnvironment sandbox = super.getSandbox(method); in getSandbox() local 107 DeepCloner deepCloner = new DeepCloner(sandbox.getRobolectricClassLoader()); in getSandbox() 110 return sandbox; in getSandbox()
|
D | RobolectricTestRunner.java | 161 protected ClassHandler createClassHandler(ShadowMap shadowMap, Sandbox sandbox) { in createClassHandler() argument 162 …return new ShadowWrangler(shadowMap, ((SdkEnvironment) sandbox).getSdkConfig().getApiLevel(), getI… in createClassHandler() 301 …protected void beforeTest(Sandbox sandbox, FrameworkMethod method, Method bootstrappedMethod) thro… 302 SdkEnvironment sdkEnvironment = (SdkEnvironment) sandbox;
|
/external/selinux/libsemanage/src/ |
D | semanage_store.c | 906 const char *sandbox = semanage_path(SEMANAGE_TMP, SEMANAGE_TOPLEVEL); in semanage_make_sandbox() local 910 if (stat(sandbox, &buf) == -1) { in semanage_make_sandbox() 912 ERR(sh, "Error scanning directory %s.", sandbox); in semanage_make_sandbox() 918 if (semanage_remove_directory(sandbox) != 0) { in semanage_make_sandbox() 920 sandbox); in semanage_make_sandbox() 925 if (mkdir(sandbox, S_IRWXU) == -1 || in semanage_make_sandbox() 927 sandbox) == -1) { in semanage_make_sandbox() 928 ERR(sh, "Could not copy files to sandbox %s.", sandbox); in semanage_make_sandbox() 935 semanage_remove_directory(sandbox); in semanage_make_sandbox() 1658 const char *sandbox = semanage_path(SEMANAGE_TMP, SEMANAGE_TOPLEVEL); in semanage_commit_sandbox() local [all …]
|
/external/ltp/testcases/kernel/fs/fs_bind/ |
D | CHANGELOG | 13 Made tests run in the sandbox directory rather than in testcases/working 25 Logged the sandbox contents before and after, took a diff, and removed the 28 sandbox. This happens after the mount cleanups otherwise it could fail.
|
/external/autotest/client/site_tests/security_SuidBinaries/ |
D | baseline.suid | 1 /opt/google/chrome/chrome-sandbox
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/ |
D | TestRunnerSequenceTest.java | 156 @Override protected void configureShadows(FrameworkMethod frameworkMethod, Sandbox sandbox) { in configureShadows() argument 158 super.configureShadows(frameworkMethod, sandbox); in configureShadows()
|
/external/robolectric-shadows/junit/ |
D | build.gradle | 12 compile project(":sandbox")
|
/external/llvm/docs/ |
D | ReleaseProcess.rst | 111 ./sandbox/bin/python sandbox/bin/lnt runtest \ 114 --sandbox sandbox \
|
D | HowToCrossCompileLLVM.rst | 197 $ ./sandbox/bin/python sandbox/bin/lnt runtest nt \ 198 --sandbox sandbox \
|
/external/boringssl/src/ssl/test/ |
D | PORTING.md | 108 …sandbox/dist/Darwin15.6.0_64_DBG.OBJ/lib go test -shim-path ~/dev/nss-dev/nss-sandbox/dist/Darwin1…
|
/external/robolectric-shadows/ |
D | settings.gradle | 4 include ":sandbox"
|
/external/python/cpython2/Misc/ |
D | developers.txt | 199 for PEP 3101 work in the sandbox. 202 for PEP 3101 work in the sandbox. 217 primarily in nondist/sandbox or on a branch of their own, and will 231 in new sandbox projects or on new branches, with merging to the 271 are expected to work primarily in nondist/sandbox and have their work 289 ``nondist/sandbox/decimal/`` at the time.
|