Searched defs:space (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/bionic/
H A Dpthread_create.cpp119 void* space = mmap(NULL, mmap_size, prot, flags, -1, 0); local
120 if (space == MAP_FAILED) {
123 "pthread_create failed: couldn't allocate %zu-bytes mapped space: %s",
128 // Stack is at the lower end of mapped space, stack guard region is at the lower end of stack.
130 if (mprotect(space, stack_guard_size, PROT_NONE) == -1) {
134 munmap(space, mmap_size);
137 prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, space, stack_guard_size, "thread stack guard page");
139 return space;
162 // Mapped space(or user allocated stack) is used for:
/bionic/libc/kernel/uapi/sound/
H A Dasound.h866 unsigned int space; member in struct:snd_ctl_elem_list

Completed in 372 milliseconds