HomeSort by relevance Sort by last modified time
    Searched refs:Unlink (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/google-breakpad/src/client/mac/crash_generation/
ConfigFile.h 59 void Unlink() {
61 unlink(config_file_path_);
  /prebuilts/go/darwin-x86/src/container/ring/
ring_test.go 113 // Unlink
114 r1.Unlink(0)
197 r0 := r10.Unlink(0)
200 r1 := r10.Unlink(1)
204 r9 := r10.Unlink(9)
213 rj := ri.Unlink(j)
ring.go 107 // Unlink removes n % r.Len() elements from the ring r, starting
111 func (r *Ring) Unlink(n int) *Ring {
  /prebuilts/go/linux-x86/src/container/ring/
ring_test.go 113 // Unlink
114 r1.Unlink(0)
197 r0 := r10.Unlink(0)
200 r1 := r10.Unlink(1)
204 r9 := r10.Unlink(9)
213 rj := ri.Unlink(j)
ring.go 107 // Unlink removes n % r.Len() elements from the ring r, starting
111 func (r *Ring) Unlink(n int) *Ring {
  /external/v8/src/
v8threads.h 22 void Unlink();
v8threads.cc 147 state->Unlink();
197 void ThreadState::Unlink() {
273 state->Unlink();
  /external/v8/src/crankshaft/
hydrogen-bce.cc 191 new_check->Unlink();
252 index->Unlink();
258 HConstant::cast(left_input)->Unlink();
262 HConstant::cast(right_input)->Unlink();
267 HConstant::cast(context)->Unlink();
282 index->Unlink();
  /art/runtime/base/unix_file/
fd_file.h 101 // If the file was opened with a path name and unlink = true, also calls Unlink() on the path.
103 bool Erase(bool unlink = false);
105 // Call unlink() if the file was opened with a path, and if open() with the name shows that
108 bool Unlink();
fd_file.cc 350 bool FdFile::Unlink() {
371 unlink(file_path_.c_str());
377 bool FdFile::Erase(bool unlink) {
381 if (unlink) {
382 ret_result = Unlink();
  /art/compiler/
image_test.h 116 image_file.Unlink();
119 oat_file.Unlink();
122 vdex_file.Unlink();
  /art/runtime/
common_runtime_test.h 77 void Unlink();
common_runtime_test.cc 179 Unlink();
194 void ScratchFile::Unlink() {
199 int unlink_result = unlink(filename_.c_str());
490 int unlink_result = unlink(filename.c_str());
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
deadcode.go 176 // Unlink values.
  /prebuilts/go/darwin-x86/src/net/
file_test.go 168 defer ln1.Close() // UnixListener.Close calls syscall.Unlink internally
unixsock_posix.go 180 // Even if there are racy calls to Close, we want to unlink only for the first one.
182 if ln.path[0] != '@' && ln.unlink {
183 syscall.Unlink(ln.path)
200 // The default behavior is to unlink the socket file only when package net created it.
205 func (l *UnixListener) SetUnlinkOnClose(unlink bool) {
206 l.unlink = unlink
214 return &UnixListener{fd: fd, path: fd.laddr.String(), unlink: true}, nil
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
deadcode.go 176 // Unlink values.
  /prebuilts/go/linux-x86/src/net/
file_test.go 168 defer ln1.Close() // UnixListener.Close calls syscall.Unlink internally
unixsock_posix.go 180 // Even if there are racy calls to Close, we want to unlink only for the first one.
182 if ln.path[0] != '@' && ln.unlink {
183 syscall.Unlink(ln.path)
200 // The default behavior is to unlink the socket file only when package net created it.
205 func (l *UnixListener) SetUnlinkOnClose(unlink bool) {
206 l.unlink = unlink
214 return &UnixListener{fd: fd, path: fd.laddr.String(), unlink: true}, nil
  /prebuilts/go/darwin-x86/src/os/
file_unix.go 240 e := syscall.Unlink(name)
250 // OS X and Linux differ on whether unlink(dir)
257 // use the error from unlink.
  /prebuilts/go/darwin-x86/src/syscall/
syscall_dragonfly.go 189 //sys Unlink(path string) (err error)
syscall_freebsd.go 204 //sys Unlink(path string) (err error)
syscall_netbsd.go 198 //sys Unlink(path string) (err error)
syscall_openbsd.go 179 //sys Unlink(path string) (err error)
syscall_unix_test.go 86 defer syscall.Unlink(name)

Completed in 940 milliseconds

1 2 3 4