HomeSort by relevance Sort by last modified time
    Searched defs:safe (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/sandbox/linux/seccomp-bpf/
trap.h 25 // responsibility to ensure that this happens in a thread-safe fashion.
37 // async-signal safe:
50 static ErrorCode MakeTrap(TrapFnc fnc, const void *aux, bool safe);
74 safe(s) {
78 bool safe; member in struct:playground2::Trap::TrapKey
94 ErrorCode MakeTrapImpl(TrapFnc fnc, const void *aux, bool safe);
errorcode.h 132 bool safe() const { return safe_; } function in class:playground2::ErrorCode
155 ErrorCode(Trap::TrapFnc fnc, const void *aux, bool safe, uint16_t id);
  /external/chromium_org/third_party/openssl/openssl/apps/
prime.c 67 int safe=0; local
90 else if(!strcmp(*argv,"-safe"))
91 safe=1;
133 BN_generate_prime_ex(bn,bits,safe,NULL,NULL,NULL);
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
asn_pack.c 89 unsigned char *safe, *p; local
95 if (!(safe = OPENSSL_malloc (safelen))) {
99 p = safe;
103 if (buf) *buf = safe;
104 return safe;
  /external/openssl/apps/
prime.c 67 int safe=0; local
90 else if(!strcmp(*argv,"-safe"))
91 safe=1;
133 BN_generate_prime_ex(bn,bits,safe,NULL,NULL,NULL);
  /external/openssl/crypto/asn1/
asn_pack.c 89 unsigned char *safe, *p; local
95 if (!(safe = OPENSSL_malloc (safelen))) {
99 p = safe;
103 if (buf) *buf = safe;
104 return safe;
  /ndk/sources/host-tools/nawk-20071023/
main.c 54 int safe = 0; /* 1 => "safe" mode */ variable
85 if (strcmp(argv[1], "-safe") == 0)
86 safe = 1;
148 if (!safe)
  /external/chromium/third_party/libjingle/source/talk/xmllite/
xmlprinter.cc 152 size_t safe = 0; local
154 size_t unsafe = text.find_first_of("<>&\"", safe);
157 *pout_ << text.substr(safe, unsafe - safe);
166 safe = unsafe + 1;
167 if (safe == text.length())
174 size_t safe = 0; local
176 size_t unsafe = text.find_first_of("<>&", safe);
179 *pout_ << text.substr(safe, unsafe - safe);
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
xmlprinter.cc 147 size_t safe = 0; local
149 size_t unsafe = text.find_first_of("<>&\"", safe);
152 *pout_ << text.substr(safe, unsafe - safe);
161 safe = unsafe + 1;
162 if (safe == text.length())
168 size_t safe = 0; local
170 size_t unsafe = text.find_first_of("<>&", safe);
173 *pout_ << text.substr(safe, unsafe - safe);
    [all...]
  /external/chromium_org/gpu/command_buffer/common/
gles2_cmd_utils.h 54 bool safe = sum64 == static_cast<int64>(sum32); local
55 *dst = safe ? sum32 : 0;
56 return safe;
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_events.c 55 int safe; member in struct:__anon26757
67 while ( ! SDL_EventLock.safe ) {
121 SDL_EventLock.safe = 1;
130 safe flag will be set, meaning that the other thread can go
131 about it's business. The safe flag is reset before the V,
133 it's not safe to interfere with the event thread.
136 SDL_EventLock.safe = 0;
168 SDL_EventLock.safe = 0;
  /bionic/libc/bionic/
malloc_debug_check.cpp 219 /* returns 1 if valid, *safe == 1 if safe to dump stack */
220 static inline int check_guards(hdr_t* hdr, int* safe) {
221 *safe = 1;
230 *safe = 0;
244 /* returns 1 if valid, *safe == 1 if safe to dump stack */
245 static inline int check_allocation_locked(hdr_t* hdr, int* safe) {
247 *safe = 1;
254 *safe = 0
294 int safe; local
532 int safe; local
    [all...]
  /external/chromium_org/content/browser/renderer_host/java/
java_bound_object.cc 921 jboolean safe = env->CallBooleanMethod(java_method.obj(), local
    [all...]
  /hardware/ti/omap4xxx/
heaptracker.c 225 /* returns 1 if valid, *safe == 1 if safe to dump stack */
226 static inline int check_guards(struct hdr *hdr, int *safe)
228 *safe = 1;
237 *safe = 0;
251 /* returns 1 if valid, *safe == 1 if safe to dump stack */
252 static inline int __check_allocation(struct hdr *hdr, int *safe)
255 *safe = 1;
263 *safe = 0
306 int safe; local
484 int safe; local
508 int safe, num_checked; local
    [all...]
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
JavaBridgeBasicsTest.java 577 public String safe() { return "foo"; } method in class:JavaBridgeBasicsTest.Test
587 // First test with safe mode off.
590 // safe() should be able to be called regardless of whether or not we are in safe mode.
592 "unsafeTestObject.getTest().safe()"));
593 // unsafe() should be able to be called because we are not in safe mode.
597 // Now test with safe mode on.
600 // safe() should be able to be called regardless of whether or not we are in safe mode.
602 "safeTestObject.getTest().safe()"));
    [all...]
  /external/chromium_org/sync/syncable/
directory.cc 442 bool safe = entry->ref(IS_DEL) && !entry->is_dirty() && local
446 if (safe) {
466 return safe;
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
syncable.cc 572 bool safe = entry->ref(IS_DEL) && !entry->is_dirty() && local
576 if (safe) {
584 return safe;
    [all...]
  /external/valgrind/main/VEX/priv/
guest_ppc_toIR.c 1667 IRExpr* safe; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 

Completed in 688 milliseconds