Searched refs:fd (Results 26 - 30 of 30) sorted by relevance

12

/dalvik/vm/
H A DMisc.h273 bool dvmSetCloseOnExec(int fd);
H A DProfile.cpp203 int fd = open("/dev/qemu_trace", O_RDWR); local
204 if (fd < 0) {
208 MAP_SHARED, fd, 0);
209 close(fd);
355 * This opens the output file (if an already open fd has not been supplied,
H A DSync.cpp277 int fd;
287 fd = open("/proc/self/cmdline", O_RDONLY);
289 read(fd, procName, sizeof(procName) - 1);
290 close(fd);
H A DThread.cpp3386 int fd = open(path, O_RDONLY);
3389 if (fd >= 0) {
3390 n = read(fd, name, sizeof(name) - 1);
3391 close(fd);
/dalvik/vm/compiler/
H A DCompiler.cpp167 int fd; local
170 fd = ashmem_create_region("dalvik-jit-code-cache", gDvmJit.codeCacheSize);
171 if (fd < 0) {
178 MAP_PRIVATE , fd, 0);
179 close(fd);

Completed in 70 milliseconds

12