Searched refs:unlink (Results 1 - 25 of 474) sorted by relevance

1234567891011>>

/external/toybox/toys/posix/
H A Dunlink.c0 /* unlink.c - delete one file
5 * See http://opengroup.org/onlinepubs/9699919799/utilities/unlink.html
7 USE_UNLINK(NEWTOY(unlink, "<1>1", TOYFLAG_USR|TOYFLAG_BIN))
10 bool "unlink"
13 usage: unlink FILE
22 if (unlink(*toys.optargs))
23 perror_exit("Couldn't unlink `%s'", *toys.optargs);
H A Dln.c54 // Force needs to unlink the existing target (if any). Do that by creating
63 if (unlink(new)) perror_msg("unlink '%s'", new);
74 if (rc && unlink(new)) perror_msg("unlink '%s'", new);
/external/jsoncpp/test/
H A Dcleantests.py10 os.unlink( path )
/external/valgrind/none/tests/
H A Dfdleak_creat.c14 (void) DO( unlink(filename) );
H A Dfdleak_cmsg.c49 unlink(sock);
167 (void) DO( unlink(filea) );
168 (void) DO( unlink(fileb) );
169 (void) DO( unlink(sock) );
/external/selinux/sepolgen/tests/
H A Dtest_module.py30 os.unlink(package)
35 os.unlink(package)
/external/elfutils/libasm/
H A Dasm_abort.c54 (void) unlink (ctx->tmp_fname);
/external/valgrind/memcheck/tests/darwin/
H A Dmkfifo.c28 unlink(f_name);
/external/selinux/libsepol/tests/policies/test-linker/
H A Dmodule2.conf5 class lnk_file { unlink };
40 allow g_m2_type_1 g_m2_type_2 : lnk_file unlink;
/external/vboot_reference/tests/
H A Dvb21_host_misc_tests.c40 unlink(testfile);
54 unlink(testfile);
68 unlink(testfile);
/external/v8/tools/
H A Dandroid-run.py63 os.unlink(outname)
64 os.unlink(errname)
105 os.unlink(script_file)
/external/chromium-trace/catapult/systrace/profile_chrome/
H A Dtrace_packager.py26 os.unlink(trace_file)
33 os.unlink(host_file)
40 os.unlink(host_file)
68 os.unlink(trace_file)
/external/google-breakpad/src/client/mac/crash_generation/
H A DConfigFile.h61 unlink(config_file_path_);
/external/google-breakpad/src/common/mac/
H A Dlaunch_reporter.cc57 unlink(config_file_path); // launch failed - get rid of config file
/external/toybox/tests/
H A Ddd.test37 unlink softlink
42 unlink softlink && rm -f file
/external/libchrome/sandbox/linux/syscall_broker/
H A Dbroker_file_permission_unittest.cc163 bool unlink; local
165 &file_to_open, &unlink));
166 ASSERT_FALSE(unlink);
217 bool unlink; local
218 ASSERT_FALSE(perm.CheckOpen(path, access_flags, NULL, &unlink));
219 ASSERT_FALSE(perm.CheckOpen(path, access_flags | O_CREAT, NULL, &unlink));
221 perm.CheckOpen(path, access_flags | O_CREAT | O_EXCL, NULL, &unlink));
222 ASSERT_TRUE(unlink);
/external/llvm/autoconf/m4/
H A Dfunc_mmap_file.m417 unlink ("foo");
/external/valgrind/memcheck/tests/linux/
H A Dsyscalls-2007.c59 unlink("/tmp/valgrind-utimensat-test");
65 unlink("/tmp/valgrind-utimensat-test");
/external/jetty/src/java/org/eclipse/jetty/util/thread/
H A DTimeout.java112 task.unlink();
135 task.unlink();
173 task.unlink();
288 private void unlink() method in class:Timeout.Task
349 unlink();
/external/chromium-trace/catapult/perf_insights/perf_insights/
H A Dgce_instance_map_job.py31 os.unlink(file_name)
47 os.unlink(file_name)
106 os.unlink(map_file)
/external/autotest/client/site_tests/kernel_PerfEventRename/
H A Dkernel_PerfEventRename.py50 os.unlink(data_name)
/external/autotest/client/site_tests/platform_CryptohomeStress/
H A Dplatform_CryptohomeStress.py22 os.unlink(signal_file)
/external/compiler-rt/test/asan/android_commands/
H A Dandroid_common.py21 os.unlink(tmp)
/external/elfutils/tests/
H A Dnewscn.c49 unlink (name);
/external/toybox/toys/lsb/
H A Dmktemp.c52 if (toys.optflags & FLAG_u) unlink(template);

Completed in 1074 milliseconds

1234567891011>>