HomeSort by relevance Sort by last modified time
    Searched defs:unlink (Results 1 - 25 of 144) sorted by null

1 2 3 4 5 6

  /bionic/libc/bionic/
unlink.cpp 32 int unlink(const char* path) { function
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/bfin/
stack.s 46 .global unlink
47 unlink: label
48 unlink;
  /external/antlr/antlr-3.4/runtime/Python/tests/
testbase.py 15 def unlink(path): function
17 os.unlink(path)
  /external/gflags/src/
windows_port.h 109 #define unlink _unlink macro
  /system/core/base/
utf8.cpp 224 int unlink(const char* name) { function in namespace:android::base::utf8
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
minigzip.c 41 # define unlink delete macro
45 # define unlink remove macro
53 #ifndef WIN32 /* unlink already in stdio.h for WIN32 */
54 extern int unlink OF((const char *));
216 unlink(file);
256 unlink(infile);
  /toolchain/binutils/binutils-2.27/zlib/
minigzip.c 44 # define unlink delete macro
48 # define unlink remove macro
57 #ifndef WIN32 /* unlink already in stdio.h for WIN32 */
58 extern int unlink OF((const char *));
290 unlink(file);
335 unlink(infile);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
minigzip.c 48 # define unlink delete macro
52 # define unlink remove macro
61 #ifndef WIN32 /* unlink already in stdio.h for WIN32 */
62 extern int unlink OF((const char *));
149 # include <unistd.h> /* for unlink() */
489 unlink(file);
542 unlink(infile);
  /external/apache-xml/src/main/java/org/apache/xpath/
VariableStack.java 166 // (As long as the caller doesn't screw up link/unlink.)
199 * <p>I use the link/unlink concept because of distant
243 public void unlink() method in class:VariableStack
253 * after the unlink.
255 public void unlink(int currentFrame) method in class:VariableStack
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_graph.cpp 53 void Graph::Edge::unlink() function in class:nv50_ir::Graph::Edge
  /external/python/cpython2/Modules/zlib/
minigzip.c 48 # define unlink delete macro
52 # define unlink remove macro
61 #ifndef WIN32 /* unlink already in stdio.h for WIN32 */
62 extern int unlink OF((const char *));
149 # include <unistd.h> /* for unlink() */
489 unlink(file);
542 unlink(infile);
  /external/python/cpython3/Modules/_multiprocessing/
semaphore.c 425 int kind, maxvalue, value, unlink; local
428 static char *kwlist[] = {"kind", "value", "maxvalue", "name", "unlink",
432 &kind, &value, &maxvalue, &name, &unlink))
440 if (!unlink) {
453 if (unlink && SEM_UNLINK(name) < 0)
659 * Function to unlink semaphore names
  /external/python/cpython3/Modules/zlib/
minigzip.c 48 # define unlink delete macro
52 # define unlink remove macro
61 #ifndef WIN32 /* unlink already in stdio.h for WIN32 */
62 extern int unlink OF((const char *));
149 # include <unistd.h> /* for unlink() */
489 unlink(file);
542 unlink(infile);
  /external/zlib/src/test/
minigzip.c 48 # define unlink delete macro
52 # define unlink remove macro
61 #ifndef WIN32 /* unlink already in stdio.h for WIN32 */
62 extern int unlink OF((const char *));
149 # include <unistd.h> /* for unlink() */
489 unlink(file);
542 unlink(infile);
  /toolchain/binutils/binutils-2.27/zlib/test/
minigzip.c 48 # define unlink delete macro
52 # define unlink remove macro
61 #ifndef WIN32 /* unlink already in stdio.h for WIN32 */
62 extern int unlink OF((const char *));
149 # include <unistd.h> /* for unlink() */
489 unlink(file);
542 unlink(infile);
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
SysCalls.c 245 @retval -1 If (errno == EPERM), unlink is not permited for this file.
250 unlink (const char *path) function
    [all...]
  /external/ImageMagick/MagickCore/
nt-base.h 266 #if !defined(unlink)
267 # define unlink _unlink macro
  /external/libvncserver/libvncserver/tightvnc-filetransfer/
filetransfermsg.c 51 #define unlink _unlink macro
753 if(unlink(rtcp->rcft.rcfu.fName) == -1) {
  /external/mdnsresponder/mDNSShared/
dnssd_ipc.h 51 # define unlink _unlink macro
  /external/mksh/src/
os2.c 487 /* alias of unlink() */
491 * Replacement for unlink() of kLIBC not supporting to remove files used by
495 unlink(const char *name) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 50 # define unlink _unlink macro
  /prebuilts/go/darwin-x86/src/syscall/
fs_nacl.go 512 func unlink(path string, isdir bool) error { func
546 func Unlink(path string) error {
547 return unlink(path, false)
551 return unlink(path, true)
  /prebuilts/go/linux-x86/src/syscall/
fs_nacl.go 512 func unlink(path string, isdir bool) error { func
546 func Unlink(path string) error {
547 return unlink(path, false)
551 return unlink(path, true)
  /system/core/adb/
sysdeps.h 32 // Include this before open/close/unlink are defined as macros below.
106 #undef unlink macro
107 #define unlink ___xxx_unlink macro
474 return unlink(path);
476 #undef unlink
477 #define unlink ___xxx_unlink
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_support.py 28 "get_original_stdout", "unload", "unlink", "rmtree", "forget",
182 def unlink(filename): function
184 os.unlink(filename)
201 unlink(os.path.join(dirname, modname + os.extsep + 'pyc'))
205 unlink(os.path.join(dirname, modname + os.extsep + 'pyo'))
467 unlink(TESTFN)
493 unlink(fn)
    [all...]

Completed in 558 milliseconds

1 2 3 4 5 6