HomeSort by relevance Sort by last modified time
    Searched refs:RLIMIT_CORE (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /bionic/tests/
sys_resource_test.cpp 34 ASSERT_EQ(0, getrlimit(RLIMIT_CORE, &l32_));
35 ASSERT_EQ(0, getrlimit64(RLIMIT_CORE, &l64_));
36 ASSERT_EQ(0, prlimit(0, RLIMIT_CORE, nullptr, &pr_l32_));
37 ASSERT_EQ(0, prlimit64(0, RLIMIT_CORE, nullptr, &pr_l64_));
50 ASSERT_EQ(0, getrlimit(RLIMIT_CORE, &l32_));
51 ASSERT_EQ(0, getrlimit64(RLIMIT_CORE, &l64_));
52 ASSERT_EQ(0, prlimit(0, RLIMIT_CORE, nullptr, &pr_l32_));
53 ASSERT_EQ(0, prlimit64(0, RLIMIT_CORE, nullptr, &pr_l64_));
78 "RLIMIT_CORE rlim_max = " << l32_.rlim_max;
87 ASSERT_EQ(0, setrlimit(RLIMIT_CORE, &l32_))
    [all...]
  /external/compiler-rt/test/sanitizer_common/TestCases/
corelimit.cc 10 getrlimit(RLIMIT_CORE, &lim_core);
  /bionic/libc/kernel/uapi/asm-generic/
resource.h 25 #define RLIMIT_CORE 4
  /external/kernel-headers/original/uapi/asm-generic/
resource.h 20 #define RLIMIT_CORE 4 /* max core file size */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
resource.h 19 #define RLIMIT_CORE 4 /* max core file size */
  /external/mksh/src/
rlimits.opt 41 >c|RLIMIT_CORE
42 FN("coredump(blocks)", RLIMIT_CORE, 512
rlimits.gen 37 #ifdef RLIMIT_CORE
38 FN("coredump(blocks)", RLIMIT_CORE, 512, 'c')
115 #ifdef RLIMIT_CORE
  /external/strace/xlat/
resources.h 14 #if defined(RLIMIT_CORE) || (defined(HAVE_DECL_RLIMIT_CORE) && HAVE_DECL_RLIMIT_CORE)
15 XLAT(RLIMIT_CORE),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
resource.h 52 RLIMIT_CORE = 4,
53 #define RLIMIT_CORE RLIMIT_CORE
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
resource.h 52 RLIMIT_CORE = 4,
53 #define RLIMIT_CORE RLIMIT_CORE
  /bionic/tests/headers/posix/
sys_resource_h.c 57 MACRO(RLIMIT_CORE);
  /external/ltp/testcases/kernel/syscalls/abort/
abort01.c 137 SAFE_GETRLIMIT(NULL, RLIMIT_CORE, &rlim);
140 tst_resm(TINFO, "Adjusting RLIMIT_CORE to %i", MIN_RLIMIT_CORE);
142 SAFE_SETRLIMIT(NULL, RLIMIT_CORE, &rlim);
  /external/ltp/testcases/kernel/syscalls/kill/
kill11.c 202 SAFE_GETRLIMIT(NULL, RLIMIT_CORE, &rlim);
205 tst_resm(TINFO, "Adjusting RLIMIT_CORE to %i", MIN_RLIMIT_CORE);
207 SAFE_SETRLIMIT(NULL, RLIMIT_CORE, &rlim);
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
resource.h 89 #define RLIMIT_CORE 4 /* core file size */
  /external/ltp/testcases/kernel/syscalls/getrlimit/
getrlimit01.c 43 {RLIMIT_CORE, "RLIMIT_CORE"},
  /external/ltp/testcases/kernel/syscalls/waitpid/
waitpid02.c 164 setrlimit(RLIMIT_CORE, &r);
waitpid05.c 239 if (setrlimit(RLIMIT_CORE, &newlimit) != 0)
241 "setrlimit(RLIMIT_CORE,RLIM_INFINITY) failed; this may cause some false core-dump test failures");
  /external/toybox/toys/posix/
ulimit.c 64 char map[] = {RLIMIT_CORE, RLIMIT_DATA, RLIMIT_NICE, RLIMIT_FSIZE,
  /external/autotest/client/bin/
test.py 65 resource.setrlimit(resource.RLIMIT_CORE, (-1, -1))
  /external/ltp/testcases/kernel/syscalls/ipc/shmat/
shmat01.c 86 SAFE_SETRLIMIT(RLIMIT_CORE, &r);
  /external/valgrind/memcheck/tests/
addressable.c 114 setrlimit(RLIMIT_CORE, &zero);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
resource.c 269 #ifdef RLIMIT_CORE
270 PyModule_AddIntConstant(m, "RLIMIT_CORE", RLIMIT_CORE);
  /external/python/cpython2/Modules/
resource.c 286 #ifdef RLIMIT_CORE
287 PyModule_AddIntConstant(m, "RLIMIT_CORE", RLIMIT_CORE);
  /external/ltp/testcases/kernel/syscalls/madvise/
madvise08.c 70 SAFE_SETRLIMIT(RLIMIT_CORE, &limit);
  /external/ltp/testcases/kernel/syscalls/setrlimit/
setrlimit01.c 22 * Use the different commands like RLIMIT_NOFILE, RLIMIT_CORE,
240 * test4() - Test for RLIMIT_CORE by forking a child and
248 TEST(setrlimit(RLIMIT_CORE, &rlim));
251 tst_resm(TFAIL | TERRNO, "setrlimit failed to set RLIMIT_CORE");
274 tst_resm(TPASS, "RLIMIT_CORE functionality is correct");

Completed in 506 milliseconds

1 2 3 4