HomeSort by relevance Sort by last modified time
    Searched defs:thunk (Results 1 - 4 of 4) sorted by null

  /libcore/ojluni/src/main/java/sun/misc/
Cleaner.java 44 * <p> A cleaner tracks a referent object and encapsulates a thunk of arbitrary
112 private final Runnable thunk; field in class:Cleaner
114 private Cleaner(Object referent, Runnable thunk) {
116 this.thunk = thunk;
122 * @param thunk
129 public static Cleaner create(Object ob, Runnable thunk) {
130 if (thunk == null)
132 return add(new Cleaner(ob, thunk));
142 thunk.run()
    [all...]
  /libcore/luni/src/main/java/libcore/util/
NativeAllocationRegistry.java 170 CleanerThunk thunk = new CleanerThunk(); local
171 Cleaner cleaner = Cleaner.create(referent, thunk);
177 thunk.setNativePtr(nativePtr);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cgraph.h 122 /* Information about thunk, used only for same body aliases. */
125 /* Information about the thunk. */
131 /* Set to true when alias node is thunk. */
244 struct cgraph_thunk_info thunk; variable in typeref:struct:cgraph_thunk_info
    [all...]
  /external/llvm/include/llvm/Support/
MachO.h 900 uint32_t thunk; member in struct:llvm::MachO::tlv_descriptor_32
906 uint64_t thunk; member in struct:llvm::MachO::tlv_descriptor_64
912 uintptr_t thunk; member in struct:llvm::MachO::tlv_descriptor
    [all...]

Completed in 744 milliseconds