HomeSort by relevance Sort by last modified time
    Searched defs:unlink (Results 51 - 75 of 101) sorted by null

1 23 4 5

  /system/core/adb/
sysdeps.h 93 int rc = unlink(path);
96 /* unlink returns EACCES when the file is read-only, so we first */
97 /* try to make it writable, then unlink again... */
100 rc = unlink(path);
104 #undef unlink macro
105 #define unlink ___xxx_unlink macro
400 return unlink(path);
402 #undef unlink macro
403 #define unlink ___xxx_unlink macro
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 1372 MultistepExprHolder unlink(MultistepExprHolder itemToRemove) method in class:RedundentExprEliminator.MultistepExprHolder
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_proxy.cc 714 int KernelProxy::unlink(const char* path) { function in class:nacl_io::KernelProxy
724 error = fs->Unlink(rel);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
LinkedHashSet.h 56 void unlink() function in class:WTF::LinkedHashSetNodeBase
69 unlink();
181 // Needs finalization. The anchor needs to unlink itself from the chain.
509 // unlink the anchor from the collection.
632 node->unlink();
644 node->unlink();
ListHashSet.h 191 void unlink(Node*);
830 unlink(node);
842 unlink(node);
913 void ListHashSet<T, inlineCapacity, U, Allocator>::unlink(Node* node) function in class:WTF::ListHashSet
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedDeque.java 392 void unlink(Node<E> x) { method in class:ConcurrentLinkedDeque
405 // Unlink interior node.
418 // predecessor/successor, we additionally try to gc-unlink,
481 // Try to gc-unlink, if possible
493 // Finally, actually gc-unlink
518 // Finally, actually gc-unlink
552 // Finally, actually gc-unlink
    [all...]
ConcurrentSkipListMap.java 105 * to unlink these deleted nodes.
197 * using CAS to link and unlink. Races are allowed in index-list
542 * unlink that may lose this index node, if the node being
561 final boolean unlink(Index<K,V> succ) { method in class:ConcurrentSkipListMap.Index
693 if (!q.unlink(r))
727 * unlink any subsequent deleted nodes encountered.
738 * findPredecessor returned a deleted node. We can't unlink
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_support.py 31 "get_original_stdout", "unload", "unlink", "rmtree", "forget",
220 _waitfor(os.unlink, filename)
233 os.unlink(fullname)
237 _unlink = os.unlink
241 def unlink(filename): function
268 unlink(os.path.join(dirname, modname + os.extsep + 'pyc'))
272 unlink(os.path.join(dirname, modname + os.extsep + 'pyo'))
543 unlink(TESTFN)
569 unlink(fn)
    [all...]
test_zipfile.py 22 run_unittest, findfile, unlink namespace
594 unlink(TESTFN)
595 unlink(TESTFN2)
710 unlink(TESTFN)
711 unlink(TESTFN2)
819 os.unlink(TESTFN)
840 # On Windows, this causes the os.unlink() call to fail because the
    [all...]
test_builtin.py 5 from test.test_support import fcmp, have_unicode, TESTFN, unlink, \
496 unlink(TESTFN)
6 run_unittest, check_py3k_warnings namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_support.py 31 "get_original_stdout", "unload", "unlink", "rmtree", "forget",
220 _waitfor(os.unlink, filename)
233 os.unlink(fullname)
237 _unlink = os.unlink
241 def unlink(filename): function
268 unlink(os.path.join(dirname, modname + os.extsep + 'pyc'))
272 unlink(os.path.join(dirname, modname + os.extsep + 'pyo'))
543 unlink(TESTFN)
569 unlink(fn)
    [all...]
test_zipfile.py 22 run_unittest, findfile, unlink namespace
594 unlink(TESTFN)
595 unlink(TESTFN2)
710 unlink(TESTFN)
711 unlink(TESTFN2)
819 os.unlink(TESTFN)
840 # On Windows, this causes the os.unlink() call to fail because the
    [all...]
test_builtin.py 5 from test.test_support import fcmp, have_unicode, TESTFN, unlink, \
496 unlink(TESTFN)
6 run_unittest, check_py3k_warnings namespace
    [all...]
  /frameworks/base/services/core/java/com/android/server/
MountService.java 311 public void unlink() { method in class:MountService.ObbState
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Heap.cpp 654 entry->unlink(&m_freeLists[i]);
954 object->unlink(previousNext);
1416 void HeapPage<Header>::unlink(ThreadHeap<Header>* heap, HeapPage* unused, HeapPage** prevNext) function in class:blink::HeapPage
    [all...]
Heap.h 214 void unlink(LargeHeapObject<Header>** previousNext) function in class:blink::LargeHeapObject
438 void unlink(FreeListEntry** prevNext) function in class:blink::FreeListEntry
498 static void unlink(ThreadHeap<Header>*, HeapPage*, HeapPage**);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_peephole.cpp 1478 MemoryOpt::Record::unlink(Record **list) function in class:nv50_ir::MemoryOpt::Record
    [all...]
  /external/fio/
thread_options.h 103 unsigned int unlink; member in struct:thread_options
330 uint32_t unlink; member in struct:thread_options_pack
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_peephole.cpp 1478 MemoryOpt::Record::unlink(Record **list) function in class:nv50_ir::MemoryOpt::Record
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 187 child.unlink()
195 child.unlink()
261 def unlink(self): member in class:Node
265 child.unlink()
405 def unlink(self): member in class:Attr
419 child.unlink()
585 old.unlink()
598 node.unlink()
668 def unlink(self): member in class:Element
670 attr.unlink()
1575 def unlink(self): member in class:Document
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 187 child.unlink()
195 child.unlink()
261 def unlink(self): member in class:Node
265 child.unlink()
405 def unlink(self): member in class:Attr
419 child.unlink()
585 old.unlink()
598 node.unlink()
668 def unlink(self): member in class:Element
670 attr.unlink()
1575 def unlink(self): member in class:Document
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 111 if ($type(object) == 'hash') object = $unlink(object.getClean());
219 mix[key] = (mp && $type(op) == 'object' && $type(mp) == 'object') ? $mixin(mp, op) : $unlink(op);
269 function $unlink(object){
274 for (var p in object) unlinked[p] = $unlink(object[p]);
281 for (var i = 0, l = object.length; i < l; i++) unlinked[i] = $unlink(object[i]);
1088 case 'array': object[key] = $unlink(object[key]); break;
1148 else proto[key] = $unlink(value);
1152 proto[key] = $unlink(value);
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 652 /// int unlink(const char *path);
653 unlink, enumerator in enum:llvm::LibFunc::Func
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources.compatibility_3.4.0.v20090505.jar 

Completed in 677 milliseconds

1 23 4 5