Searched refs:safe (Results 1 - 25 of 390) sorted by relevance

1234567891011>>

/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/sandbox/linux/seccomp-bpf/
H A Dtrap.h25 // 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);
H A Dtrap.cc91 // Note: This class is not thread safe. It is the caller's responsibility
121 // safe and can lead to bugs. We should eventually implement a different
122 // logging and reporting mechanism that is safe to be called from
204 return safe < o.safe;
208 ErrorCode Trap::MakeTrap(TrapFnc fnc, const void *aux, bool safe) { argument
209 return GetInstance()->MakeTrapImpl(fnc, aux, safe);
212 ErrorCode Trap::MakeTrapImpl(TrapFnc fnc, const void *aux, bool safe) { argument
213 if (!safe && !SandboxDebuggingAllowedByUser()) {
233 TrapKey key(fnc, aux, safe);
[all...]
H A Derrorcode.h132 bool safe() const { return safe_; } function in class:playground2::ErrorCode
155 ErrorCode(Trap::TrapFnc fnc, const void *aux, bool safe, uint16_t id);
H A Derrorcode.cc26 ErrorCode::ErrorCode(Trap::TrapFnc fnc, const void *aux, bool safe, argument
31 safe_(safe),
/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/markdown/markdown/
H A Dpostprocessors.py44 """ 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:
/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/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/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/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/openfst/src/include/fst/
H A Dinvert.h90 InvertFst(const InvertFst<A> &fst, bool safe = false)
91 : ArcMapFst<A, A, C>(fst, safe) {}
94 virtual InvertFst<A> *Copy(bool safe = false) const {
95 return new InvertFst(*this, safe);
H A Dclosure.h120 ClosureFst(const ClosureFst<A> &fst, bool safe = false)
121 : RationalFst<A>(fst, safe) {}
124 virtual ClosureFst<A> *Copy(bool safe = false) const {
125 return new ClosureFst<A>(*this, safe);
H A Dintersect.h94 IntersectFst(const IntersectFst<A> &fst, bool safe = false) :
95 ComposeFst<A>(fst, safe) {}
98 virtual IntersectFst<A> *Copy(bool safe = false) const {
99 return new IntersectFst<A>(*this, safe);
H A Dmap.h73 MapFst(const ArcMapFst<A, B, C> &fst, bool safe = false)
74 : ArcMapFst<A, B, C>(fst, safe) {}
77 virtual MapFst<A, B, C> *Copy(bool safe = false) const {
78 return new MapFst(*this, safe);
H A Dmatcher.h50 // // If safe=true, the copy is thread-safe. See Fst<>::Copy()
52 // Matcher(const Matcher &matcher, bool safe = false);
54 // // If safe=true, the copy is thread-safe. See Fst<>::Copy()
56 // Matcher<F> *Copy(bool safe = false) const;
113 virtual MatcherBase<A> *Copy(bool safe = false) const = 0;
173 SortedMatcher(const SortedMatcher<F> &matcher, bool safe = false)
174 : fst_(matcher.fst_->Copy(safe)),
190 virtual SortedMatcher<F> *Copy(bool safe
[all...]
H A Dproject.h113 ProjectFst(const ProjectFst<A> &fst, bool safe = false)
114 : ArcMapFst<A, A, C>(fst, safe) {}
117 virtual ProjectFst<A> *Copy(bool safe = false) const {
118 return new ProjectFst(*this, safe);
H A Dunion.h150 UnionFst(const UnionFst<A> &fst, bool safe = false)
151 : RationalFst<A>(fst, safe) {}
154 virtual UnionFst<A> *Copy(bool safe = false) const {
155 return new UnionFst<A>(*this, safe);
H A Dmatcher-fst.h103 MatcherFst(const MatcherFst<F, M, N, I> &fst, bool safe = false)
104 : ImplToExpandedFst<Impl>(fst, safe) {}
107 virtual MatcherFst<F, M, N, I> *Copy(bool safe = false) const {
108 return new MatcherFst<F, M, N, I>(*this, safe);
256 LookAheadMatcher(const LookAheadMatcher<FST> &matcher, bool safe = false) {
257 matcher_ = matcher.matcher_->Copy(safe);
263 LookAheadMatcher<FST> *Copy(bool safe = false) const {
264 return new LookAheadMatcher<FST>(*this, safe);
H A Dcompose-filter.h172 // // If safe=true, the copy is thread-safe. See Fst<>::Copy()
175 // // bool safe = false);
230 bool safe = false)
231 : matcher1_(filter.matcher1_->Copy(safe)),
232 matcher2_(filter.matcher2_->Copy(safe)),
315 bool safe = false)
316 : matcher1_(filter.matcher1_->Copy(safe)),
317 matcher2_(filter.matcher2_->Copy(safe)),
402 bool 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))
/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))
/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/chromium_org/chrome/browser/resources/downloads/
H A Ddownloads.css111 .download.otr > .safe,
119 html[dir=rtl] .download.otr > .safe,
124 .download.otr > .safe:hover,
/external/chromium_org/skia/
H A Dskia_chrome_opts.target.darwin-arm.mk33 -Wl,--icf=safe \
52 -Wl,--icf=safe \

Completed in 532 milliseconds

1234567891011>>