Searched defs:native (Results 1 - 3 of 3) sorted by relevance
/dalvik/libcore/ |
H A D | NativeCode.mk | 16 # Definitions for building the native code needed for the core library. 23 # Get the list of all native directories that contain sub.mk files. 26 define all-core-native-dirs 27 $(patsubst %/sub.mk,%,$(shell cd $(LOCAL_PATH) && ls -d */src/$(1)/native/sub.mk 2> /dev/null)) 42 define include-core-native-dir 56 # Find any native directories containing sub.mk files. 57 core_native_dirs := $(strip $(call all-core-native-dirs,main)) 59 $(error No native code defined for libcore) 73 $(eval $(call include-core-native-dir,$(dir))))
|
/dalvik/vm/native/ |
H A D | org_apache_harmony_dalvik_ddmc_DdmVmInternal.c | 21 #include "native/InternalNativePriv.h" 70 * public static boolean heapSegmentNotify(int when, int what, bool native) 80 bool native = (args[2] != 0); // false=virtual heap, true=native heap local 83 ret = dvmDdmHandleHpsgNhsgChunk(when, what, native);
|
/dalvik/vm/alloc/ |
H A D | DdmHeap.c | 278 /* If we're looking at the native heap, we'll just return 281 bool native = ctx->type == CHUNK_TYPE("NHSG"); local 287 if (!native && dvmIsValidObject(obj)) { 366 walkHeap(bool merge, bool native) argument 378 if (native) { 390 if (native) { 403 dvmDdmSendHeapSegments(bool shouldLock, bool native) argument 412 if (!native) { 444 dvmDbgDdmSendChunk(native ? CHUNK_TYPE("NHST") : CHUNK_TYPE("HPST"), 449 walkHeap(merge, native); 462 dvmDdmHandleHpsgNhsgChunk(int when, int what, bool native) argument [all...] |
Completed in 139 milliseconds