/external/skia/platform_tools/android/third_party/ashmem/cutils/ |
ashmem.h | 19 int ashmem_create_region(const char *name, size_t size);
|
ashmem-dev.c | 36 * ashmem_create_region - creates a new ashmem region and returns the file 42 int ashmem_create_region(const char *name, size_t size) function
|
/system/core/include/cutils/ |
ashmem.h | 19 int ashmem_create_region(const char *name, size_t size);
|
/system/core/libcutils/ |
ashmem-host.c | 41 int ashmem_create_region(const char *ignored __unused, size_t size) function
|
ashmem-dev.c | 137 * ashmem_create_region - creates a new ashmem region and returns the file 143 int ashmem_create_region(const char *name, size_t size) function
|
/frameworks/base/core/jni/ |
android_os_MemoryFile.cpp | 33 int result = ashmem_create_region(namestr, length); 39 jniThrowException(env, "java/io/IOException", "ashmem_create_region failed");
|
android_util_MemoryIntArray.cpp | 39 int fd = ashmem_create_region(nameStr, ashmemSize);
|
android_database_SQLiteConnection.cpp | 516 int fd = ashmem_create_region(NULL, length); 519 ALOGE("ashmem_create_region failed: %s", strerror(error)); [all...] |
/frameworks/native/libs/binder/ |
MemoryHeapBase.cpp | 50 int fd = ashmem_create_region(name == NULL ? "MemoryHeapBase" : name, size);
|
Parcel.cpp | [all...] |
/system/core/libpixelflinger/codeflinger/ |
CodeCache.cpp | 84 int fd = ashmem_create_region("CodeFlinger code cache", 87 "Creating code cache, ashmem_create_region "
|
/hardware/libhardware/modules/gralloc/ |
gralloc.cpp | 176 fd = ashmem_create_region("gralloc-buffer", size);
|
/frameworks/base/libs/androidfw/ |
CursorWindow.cpp | 49 int ashmemFd = ashmem_create_region(ashmemName.string(), size);
|
/art/runtime/ |
mem_map.cc | 319 fd.reset(ashmem_create_region(debug_friendly_name.c_str(), page_aligned_byte_count)); 321 *error_msg = StringPrintf("ashmem_create_region failed for '%s': %s", name, strerror(errno)); 547 int_fd = ashmem_create_region(debug_friendly_name.c_str(), tail_base_size); 550 *error_msg = StringPrintf("ashmem_create_region failed for '%s': %s", [all...] |
/hardware/intel/common/omx-components/videocodec/securevideo/moorefield/ |
OMXVideoDecoderAVCSecure.cpp | 607 int fd = ashmem_create_region("protectd-content-buffer", sizeof(ProtectedDataBuffer));
|
/device/generic/goldfish/opengl/system/gralloc/ |
gralloc.cpp | 285 fd = ashmem_create_region("gralloc-buffer", ashmem_size); [all...] |
/frameworks/base/core/jni/android/graphics/ |
Graphics.cpp | 599 fd = ashmem_create_region("bitmap", size);
|
/system/core/libpixelflinger/tests/arch-mips64/assembler/ |
mips64_assembler_test.cpp | 615 int fd = ashmem_create_region("code cache", instrMemSize); 618 printf("Creating code cache, ashmem_create_region "
|
/system/core/libpixelflinger/tests/arch-arm64/assembler/ |
arm64_assembler_test.cpp | [all...] |