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

1 2

  /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_org/sandbox/linux/seccomp-bpf/
trap.h 30 // responsibility to ensure that this happens in a thread-safe fashion.
42 // async-signal safe:
55 static uint16_t MakeTrap(TrapFnc fnc, const void* aux, bool safe);
67 // Returns true if a safe trap handler is associated with a
73 TrapKey() : fnc(NULL), aux(NULL), safe(false) {}
74 TrapKey(TrapFnc f, const void* a, bool s) : fnc(f), aux(a), safe(s) {}
77 bool safe; member in struct:sandbox::Trap::TrapKey
104 uint16_t MakeTrapImpl(TrapFnc fnc, const void* aux, bool safe);
errorcode.h 132 bool safe() const { return safe_; } function in class:sandbox::ErrorCode
155 ErrorCode(Trap::TrapFnc fnc, const void* aux, bool safe);
  /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/third_party/webrtc/libjingle/xmllite/
xmlprinter.cc 130 size_t safe = 0; local
132 size_t unsafe = text.find_first_of("<>&\"", safe);
135 *pout_ << text.substr(safe, unsafe - safe);
144 safe = unsafe + 1;
145 if (safe == text.length())
151 size_t safe = 0; local
153 size_t unsafe = text.find_first_of("<>&", safe);
156 *pout_ << text.substr(safe, unsafe - safe);
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
content_providers.py 177 def safe(name, action, callback): function in function:ContentProviders.Refresh
192 future = safe(path,
197 return Future(callback=lambda: safe(path, 'resolving', future.Get))
  /external/chromium_org/ash/system/chromeos/power/
tray_power_unittest.cc 190 PowerSupplyProperties safe = DefaultPowerSupplyProperties(); local
191 safe.set_battery_time_to_empty_sec(TrayPower::kNoWarningMinutes * 60 - 29);
192 EXPECT_FALSE(UpdateNotificationState(safe));
  /external/chromium_org/content/browser/android/java/
gin_java_bound_object.cc 175 jboolean safe = env->CallBooleanMethod(java_method.obj(), local
183 if (!safe)
  /external/chromium_org/gpu/command_buffer/common/
gles2_cmd_utils.h 55 bool safe = sum64 == static_cast<int64_t>(sum32); local
56 *dst = safe ? sum32 : 0;
57 return safe;
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_events.c 55 int safe; member in struct:__anon13097
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;
  /art/runtime/
mem_map.cc 318 bool safe = true; local
321 safe = false;
330 if (safe == true) {
  /hardware/ti/omap4-aah/
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...]
  /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...]
  /bionic/libc/bionic/
malloc_debug_check.cpp 232 /* returns 1 if valid, *safe == 1 if safe to dump stack */
233 static inline int check_guards(hdr_t* hdr, int* safe) {
234 *safe = 1;
243 *safe = 0;
257 /* returns 1 if valid, *safe == 1 if safe to dump stack */
258 static inline int check_allocation_locked(hdr_t* hdr, int* safe) {
260 *safe = 1;
267 *safe = 0
307 int safe; local
623 int safe; local
    [all...]
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
JavaBridgeBasicsTest.java 715 public String safe() { return "foo"; } method in class:JavaBridgeBasicsTest.Test
725 // First test with safe mode off.
728 // safe() should be able to be called regardless of whether or not we are in safe mode.
730 "unsafeTestObject.getTest().safe()"));
731 // unsafe() should be able to be called because we are not in safe mode.
735 // Now test with safe mode on.
738 // safe() should be able to be called regardless of whether or not we are in safe mode.
740 "safeTestObject.getTest().safe()"));
    [all...]
  /external/chromium_org/sync/syncable/
directory.cc 501 bool safe = entry->ref(IS_DEL) && !entry->is_dirty() && local
505 if (safe) {
525 return safe;
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aether-connector-wagon-0.9.0.M2.jar 
maven-core-3.2.1.jar 
  /external/valgrind/main/VEX/priv/
guest_ppc_toIR.c 1773 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 
  /external/chromium_org/third_party/closure_compiler/compiler/
compiler.jar 
  /prebuilts/misc/common/android-support-test/
espresso-core.jar 

Completed in 456 milliseconds

1 2