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

1 2 3 4

  /bootable/recovery/minzip/
Android.mk 13 external/safe-iop/include
  /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:
commandline.py 38 'safe': False,
57 parser.add_option("-s", "--safe", dest="safe", default=False,
59 help="safe mode ('replace', 'remove' or 'escape' user's HTML tag)")
82 'safe_mode': options.safe,
preprocessors.py 52 def store(self, html, safe=False):
61 * safe: label an html segment as safe for safemode
66 self.rawHtmlBlocks.append((html, 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/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/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/quake/quake/src/WinQuake/
wq.bat 3 if x%1==xsafe goto safe
15 echo wq safe: very likely to run, but may be slower
36 :safe label
  /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/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))
bn_prime.c 159 int BN_generate_prime_ex(BIGNUM *ret, int bits, int safe,
181 if (safe)
197 if (!safe)
205 /* for "safe prime" generation,
223 /* We have a safe prime test pass */
  /system/core/libnl_2/
Android.mk 28 # * Library is not thread 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)
awkgram.y 242 if (safe) SYNTAX("cmd | getline is unsafe");
245 if (safe) SYNTAX("cmd | getline is unsafe");
296 if (safe) SYNTAX("print | is unsafe");
299 if (safe) SYNTAX("print >> is unsafe");
302 if (safe) SYNTAX("print > is unsafe");
awk.h 46 extern int safe; /* 0 => unsafe, 1 => safe */
  /external/qemu/distrib/sdl-1.2.12/src/events/
SDL_events.c 55 int safe; member in struct:__anon9623
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/markdown/markdown/extensions/
fenced_code.py 96 placeholder = self.markdown.htmlStash.store(code, safe=True)
codehilite.py 191 safe=True)
  /external/kernel-headers/original/linux/
compiler.h 9 # define __safe __attribute__((safe))
  /libcore/luni/src/main/java/java/math/
NativeBN.java 157 public static native boolean BN_generate_prime_ex(int ret, int bits, boolean safe,
159 // int BN_generate_prime_ex(BIGNUM *ret, int bits, int safe,
  /external/valgrind/main/coregrind/m_demangle/
safe-ctype.c 29 It is defined by @file{safe-ctype.h}, and will be an integer constant
59 These twelve macros are defined by @file{safe-ctype.h}. Each has the
101 These six macros are defined by @file{safe-ctype.h} and provide
120 #include <safe-ctype.h>
126 #include "safe-ctype.h"
129 #error "<safe-ctype.h> requires EOF == -1"
  /external/webkit/Tools/Scripts/webkitpy/common/system/
path.py 119 return urllib.quote(path, safe='/+:')
  /dalvik/libdex/
Android.mk 41 external/safe-iop/include
  /external/v8/src/
scanner-base.cc 726 // only "safe" characters are allowed (letters, digits, underscore),
  /frameworks/base/media/libstagefright/
Android.mk 96 # if it's safe to link against libchromium.net

Completed in 1585 milliseconds

1 2 3 4