Searched defs:safe (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dcontent_providers.py102 def safe(name, action, callback): function in function:ContentProviders.Cron
113 futures = [(name, safe(name,
118 lambda: [safe(name, 'resolving', f.Get) for name, f in futures if f]))
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Derrorcode.cc25 ErrorCode::ErrorCode(Trap::TrapFnc fnc, const void* aux, bool safe, uint16_t id) argument
29 safe_(safe),
H A Dtrap.h24 // responsibility to ensure that this happens in a thread-safe fashion.
36 // async-signal safe:
49 static ErrorCode MakeTrap(TrapFnc fnc, const void* aux, bool safe);
70 TrapKey(TrapFnc f, const void* a, bool s) : fnc(f), aux(a), safe(s) {}
73 bool safe; member in struct:sandbox::Trap::TrapKey
92 ErrorCode MakeTrapImpl(TrapFnc fnc, const void* aux, bool safe);
H A Dtrap.cc98 // Note: This class is not thread safe. It is the caller's responsibility
156 // safe and can lead to bugs. We should eventually implement a different
157 // logging and reporting mechanism that is safe to be called from
213 return safe < o.safe;
217 ErrorCode Trap::MakeTrap(TrapFnc fnc, const void* aux, bool safe) { argument
218 return GetInstance()->MakeTrapImpl(fnc, aux, safe);
221 ErrorCode Trap::MakeTrapImpl(TrapFnc fnc, const void* aux, bool safe) { argument
222 if (!safe && !SandboxDebuggingAllowedByUser()) {
243 TrapKey key(fnc, aux, safe);
[all...]
H A Derrorcode.h134 bool safe() const { return safe_; } function in class:sandbox::ErrorCode
157 ErrorCode(Trap::TrapFnc fnc, const void* aux, bool safe, uint16_t id);
/external/chromium_org/third_party/openssl/openssl/apps/
H A Dprime.c67 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/
H A Dasn_pack.c89 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/
H A Dprime.c67 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/
H A Dasn_pack.c89 unsigned char *safe, *p; local
95 if (!(safe = OPENSSL_malloc (safelen))) {
99 p = safe;
103 if (buf) *buf = safe;
104 return safe;
/external/chromium_org/third_party/libjingle/source/talk/xmllite/
H A Dxmlprinter.cc147 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/openssl/openssl/crypto/bn/
H A Dbn_depr.c68 BIGNUM *BN_generate_prime(BIGNUM *ret, int bits, int safe, argument
84 if(!BN_generate_prime_ex(rnd, bits, safe, add, rem, &cb))
H A Dbn_prime.c159 int BN_generate_prime_ex(BIGNUM *ret, int bits, int safe, argument
181 if (safe)
197 if (!safe)
205 /* for "safe prime" generation,
223 /* We have a safe prime test pass */
/external/openssl/crypto/bn/
H A Dbn_depr.c68 BIGNUM *BN_generate_prime(BIGNUM *ret, int bits, int safe, argument
84 if(!BN_generate_prime_ex(rnd, bits, safe, add, rem, &cb))
H A Dbn_prime.c159 int BN_generate_prime_ex(BIGNUM *ret, int bits, int safe, argument
181 if (safe)
197 if (!safe)
205 /* for "safe prime" generation,
223 /* We have a safe prime test pass */
/external/chromium/third_party/libjingle/source/talk/xmllite/
H A Dxmlprinter.cc152 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/ash/system/chromeos/power/
H A Dtray_power_unittest.cc191 PowerSupplyProperties safe = DefaultPowerSupplyProperties(); local
192 safe.set_battery_time_to_empty_sec(TrayPower::kNoWarningMinutes * 60 - 29);
193 EXPECT_FALSE(UpdateNotificationState(safe));
/external/openfst/src/include/fst/
H A Dexpanded-fst.h43 virtual ExpandedFst<A> *Copy(bool safe = false) const = 0;
143 ImplToExpandedFst(const ImplToExpandedFst<I, F> &fst, bool safe) argument
144 : ImplToFst<I, F>(fst, safe) {}
H A Dmutable-fst.h85 virtual MutableFst<A> *Copy(bool safe = false) const = 0;
271 // since it is then safe to update all (shallow) copies
355 ImplToMutableFst(const ImplToMutableFst<I, F> &fst, bool safe) argument
356 : ImplToExpandedFst<I, F>(fst, safe) {}
/external/chromium_org/gpu/command_buffer/common/
H A Dgles2_cmd_utils.h54 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/
H A DSDL_events.c55 int safe; member in struct:__anon25324
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;
/external/chromium_org/chrome/browser/safe_browsing/
H A Dsafe_browsing_test.cc6 // http://code.google.com/p/google-safe-browsing/ to test the safebrowsing
9 // http://code.google.com/p/google-safe-browsing/wiki/ProtocolTesting
180 void set_is_checked_url_safe(bool safe) { argument
182 is_checked_url_safe_ = safe;
283 // True if last verified URL is not a phishing URL and thus it is safe.
/external/replicaisland/src/com/replica/replicaisland/
H A DGame.java530 public void setSafeMode(boolean safe) { argument
531 mSurfaceView.setSafeMode(safe);
/external/bison/lib/
H A Dhash.c860 transfer_entries (Hash_table *dst, Hash_table *src, bool safe) argument
905 if (safe)
1011 and safe is better than failure. */
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_test.cc6 // http://code.google.com/p/google-safe-browsing/ to test the safebrowsing
9 // http://code.google.com/p/google-safe-browsing/wiki/ProtocolTesting
247 void set_is_checked_url_safe(bool safe) { argument
249 is_checked_url_safe_ = safe;
333 // True if last verified URL is not a phishing URL and thus it is safe.
/external/chromium_org/content/browser/renderer_host/java/
H A Djava_bound_object.cc946 jboolean safe = env->CallBooleanMethod(java_method.obj(), local
954 if (!safe)

Completed in 1254 milliseconds

12