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

1 2 3 4 5 6 7 8 91011>>

  /external/libpng/tests/
pngunknown-if-safe 2 exec ./pngunknown default=if-safe "${srcdir}/pngtest.png"
pngunknown-sTER 2 exec ./pngunknown sTER=if-safe "${srcdir}/pngtest.png"
pngunknown-vpAg 2 exec ./pngunknown vpAg=if-safe "${srcdir}/pngtest.png"
  /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...]
  /bootable/recovery/minzip/
Android.mk 13 external/safe-iop/include
  /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);
67 TrapKey(TrapFnc f, const void* a, bool s) : fnc(f), aux(a), safe(s) {}
70 bool safe; member in struct:sandbox::Trap::TrapKey
97 ErrorCode MakeTrapImpl(TrapFnc fnc, const void* aux, bool safe);
trap.cc 101 // Note: This class is not thread safe. It is the caller's responsibility
159 // safe and can lead to bugs. We should eventually implement a different
160 // logging and reporting mechanism that is safe to be called from
216 return safe < o.safe;
220 ErrorCode Trap::MakeTrap(TrapFnc fnc, const void* aux, bool safe) {
221 return GetInstance()->MakeTrapImpl(fnc, aux, safe);
224 ErrorCode Trap::MakeTrapImpl(TrapFnc fnc, const void* aux, bool safe) {
225 if (!safe && !SandboxDebuggingAllowedByUser()) {
246 TrapKey key(fnc, aux, safe);
    [all...]
errorcode.h 141 bool safe() const { return safe_; } function in class:sandbox::ErrorCode
164 ErrorCode(Trap::TrapFnc fnc, const void* aux, bool safe, uint16_t id);
  /external/markdown/markdown/
postprocessors.py 44 """ Iterate over html stash and restore "safe" html. """
46 html, safe = self.markdown.htmlStash.rawHtmlBlocks[i]
47 if self.markdown.safeMode and not safe:
54 if safe or not self.markdown.safeMode:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pprint.py 44 for safe in (2, 2.0, 2j, "abc", [3], (2,2), {3: 3}, uni("yaddayadda"),
47 self.assertFalse(pprint.isrecursive(safe),
48 "expected not isrecursive for %r" % (safe,))
49 self.assertTrue(pprint.isreadable(safe),
50 "expected isreadable for %r" % (safe,))
52 self.assertFalse(pp.isrecursive(safe),
53 "expected not isrecursive for %r" % (safe,))
54 self.assertTrue(pp.isreadable(safe),
55 "expected isreadable for %r" % (safe,))
78 for safe in self.a, self.b, self.d, (self.d, self.d)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pprint.py 44 for safe in (2, 2.0, 2j, "abc", [3], (2,2), {3: 3}, uni("yaddayadda"),
47 self.assertFalse(pprint.isrecursive(safe),
48 "expected not isrecursive for %r" % (safe,))
49 self.assertTrue(pprint.isreadable(safe),
50 "expected isreadable for %r" % (safe,))
52 self.assertFalse(pp.isrecursive(safe),
53 "expected not isrecursive for %r" % (safe,))
54 self.assertTrue(pp.isreadable(safe),
55 "expected isreadable for %r" % (safe,))
78 for safe in self.a, self.b, self.d, (self.d, self.d)
    [all...]
  /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/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;
  /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...]
  /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/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/markdown/
postprocessors.py 84 """ Iterate over html stash and restore "safe" html. """
86 html, safe = self.markdown.htmlStash.rawHtmlBlocks[i]
87 if self.markdown.safeMode and not safe:
94 if self.isblocklevel(html) and (safe or not self.markdown.safeMode):
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_depr.c 68 BIGNUM *BN_generate_prime(BIGNUM *ret, int bits, int safe,
84 if(!BN_generate_prime_ex(rnd, bits, safe, add, rem, &cb))
  /external/openssl/crypto/bn/
bn_depr.c 68 BIGNUM *BN_generate_prime(BIGNUM *ret, int bits, int safe,
84 if(!BN_generate_prime_ex(rnd, bits, safe, add, rem, &cb))
  /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/chrome/browser/resources/ssl/
interstitial_v2.css 15 body.safe-browsing {
121 .safe-browsing :-webkit-any(
126 .safe-browsing button {
131 .safe-browsing button:active {
136 .safe-browsing button:hover {
140 .safe-browsing .icon {
  /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/third_party/markupsafe/
_native.py 16 """Convert the characters &, <, >, ' and " in string s to HTML-safe
  /external/libunwind/doc/
unw_regname.tex 32 The \Func{unw\_regname}() routine is thread-safe as well as safe to

Completed in 1613 milliseconds

1 2 3 4 5 6 7 8 91011>>