HomeSort by relevance Sort by last modified time
    Searched refs:new_stack (Results 1 - 10 of 10) sorted by null

  /external/selinux/libsepol/cil/src/
cil_stack.c 42 struct cil_stack *new_stack = cil_malloc(sizeof(*new_stack)); local
43 new_stack->stack = cil_malloc(sizeof(*(new_stack->stack)) * CIL_STACK_INIT_SIZE);
44 new_stack->size = CIL_STACK_INIT_SIZE;
45 new_stack->pos = -1;
46 *stack = new_stack;
  /art/runtime/
thread_linux.cc 32 static void SigAltStack(stack_t* new_stack, stack_t* old_stack) {
33 if (sigaltstack(new_stack, old_stack) == -1) {
  /external/valgrind/exp-bbv/tests/amd64-linux/
clone_test.S 43 mov $(new_stack+4096),%rsi # new stack
95 .lcomm new_stack,4096
  /external/valgrind/exp-bbv/tests/x86-linux/
clone_test.S 43 mov $(new_stack+4096),%ecx # new stack
95 .lcomm new_stack,4096
  /external/google-breakpad/src/client/linux/handler/
exception_handler.cc 128 // InstallAlternateStackLocked will store the newly installed stack in new_stack
131 stack_t new_stack; member in namespace:google_breakpad::__anon9390
142 memset(&new_stack, 0, sizeof(new_stack));
153 new_stack.ss_sp = calloc(1, kSigStackSize);
154 new_stack.ss_size = kSigStackSize;
156 if (sys_sigaltstack(&new_stack, NULL) == -1) {
157 free(new_stack.ss_sp);
175 if (current_stack.ss_sp == new_stack.ss_sp) {
187 free(new_stack.ss_sp)
    [all...]
  /external/valgrind/coregrind/
m_stacks.c 403 Stack* new_stack = find_stack_by_addr(new_SP); \
404 if (new_stack \
405 && (current_stack == NULL || new_stack->id != current_stack->id)) { \
408 current_stack = new_stack; \
  /external/v8/benchmarks/spinning-balls/
splay-tree.js 308 var new_stack = new Array(stack.length * 2);
316 new_stack[new_length++] = l;
320 new_stack[new_length++] = r;
323 stack = new_stack;
  /external/selinux/libsepol/src/
services.c 91 char **new_stack = stack; local
99 new_stack = realloc(stack, new_stack_len * sizeof(*stack));
100 if (!new_stack) {
105 stack = new_stack;
    [all...]
module_to_cil.c 433 void *new_stack; local
436 new_stack = realloc(stack->stack, sizeof(*stack->stack) * (stack->size * 2));
437 if (new_stack == NULL) {
440 stack->stack = new_stack;
    [all...]
  /external/libvncserver/x11vnc/
userinput.c 6031 Window new_stack[STACKMAX]; variable
    [all...]

Completed in 330 milliseconds