/external/chromium/net/base/ |
platform_mime_util_win.cc | 5 #include "net/base/platform_mime_util.h" 9 #include "base/utf_string_conversions.h" 10 #include "base/win/registry.h" 19 base::win::RegKey(HKEY_CLASSES_ROOT, key.c_str(), KEY_READ).ReadValue( 31 if (base::win::RegKey(HKEY_CLASSES_ROOT, key.c_str(), KEY_READ).ReadValue(
|
test_root_certs.h | 9 #include "base/lazy_instance.h" 18 #include "base/mac/scoped_cftyperef.h" 74 friend struct base::DefaultLazyInstanceTraits<TestRootCerts>; 83 base::mac::ScopedCFTypeRef<CFMutableArrayRef> temporary_roots_;
|
/external/chromium/net/socket_stream/ |
socket_stream_job.h | 11 #include "base/memory/ref_counted.h" 12 #include "base/string16.h" 25 class SocketStreamJob : public base::RefCountedThreadSafe<SocketStreamJob> { 67 friend class base::RefCountedThreadSafe<SocketStreamJob>;
|
/external/chromium/net/tools/fetch/ |
fetch_server.cc | 5 #include "base/at_exit.h" 6 #include "base/command_line.h" 7 #include "base/memory/singleton.h" 8 #include "base/message_loop.h" 9 #include "base/metrics/stats_counters.h" 10 #include "net/base/completion_callback.h" 11 #include "net/base/io_buffer.h" 12 #include "net/base/net_errors.h" 13 #include "net/base/winsock_init.h" 26 base::AtExitManager exit [all...] |
/external/chromium/net/websockets/ |
websocket_throttle.cc | 9 #include "base/hash_tables.h" 10 #include "base/memory/ref_counted.h" 11 #include "base/memory/singleton.h" 12 #include "base/message_loop.h" 13 #include "base/string_number_conversions.h" 14 #include "base/string_util.h" 15 #include "base/stringprintf.h" 16 #include "net/base/io_buffer.h" 17 #include "net/base/sys_addrinfo.h" 28 return base::StringPrintf("%d:%s" [all...] |
/external/chromium/third_party/libevent/test/ |
regress.gen.h | 14 #define EVTAG_ASSIGN(msg, member, args...) (*(msg)->base->member##_assign)(msg, ## args) 15 #define EVTAG_GET(msg, member, args...) (*(msg)->base->member##_get)(msg, ## args) 17 #define EVTAG_ASSIGN(msg, member, ...) (*(msg)->base->member##_assign)(msg, ## __VA_ARGS__) 18 #define EVTAG_GET(msg, member, ...) (*(msg)->base->member##_get)(msg, ## __VA_ARGS__) 20 #define EVTAG_ADD(msg, member) (*(msg)->base->member##_add)(msg) 50 struct msg_access_ *base; member in struct:msg 105 struct kill_access_ *base; member in struct:kill 153 struct run_access_ *base; member in struct:run
|
/external/clang/test/Sema/ |
address_spaces.c | 37 __attribute__((address_space(256))) void * * const base = 0; variable 39 return base[0]; // expected-error {{returning '__attribute__((address_space(256))) void *' from a function with result type 'void *' changes address space of pointer}}
|
/external/dropbear/libtomcrypt/src/pk/dsa/ |
dsa_shared_secret.c | 23 @param base The base of the exponentiation (allows this to be used for both encrypt and decrypt) 29 int dsa_shared_secret(void *private_key, void *base, 47 if ((err = mp_exptmod(base, private_key, public_key->p, res)) != CRYPT_OK) {
|
/external/elfutils/tests/ |
dwfl-bug-getmodules.c | 41 Dwarf_Addr base, void *arg) 43 if (base != 0x2000)
|
/external/guava/guava/src/com/google/common/base/ |
AbstractIterator.java | 17 package com.google.common.base; 19 import static com.google.common.base.Preconditions.checkState;
|
/external/guava/guava/src/com/google/common/collect/ |
BstPath.java | 17 import static com.google.common.base.Preconditions.checkNotNull; 18 import static com.google.common.base.Preconditions.checkState;
|
/external/guava/guava-tests/test/com/google/common/collect/ |
MapsSortedTransformValuesTest.java | 23 import com.google.common.base.Function; 24 import com.google.common.base.Functions;
|
/external/junit/src/org/junit/rules/ |
TestWatcher.java | 8 * TestWatcher is a base class for Rules that take note of the testing 41 public Statement apply(final Statement base, final Description description) { 47 base.evaluate();
|
TestWatchman.java | 8 * TestWatchman is a base class for Rules that take note of the testing 46 public Statement apply(final Statement base, final FrameworkMethod method, 53 base.evaluate();
|
/external/kernel-headers/original/asm-x86/ |
div64.h | 20 #define do_div(n,base) ({ \ 22 __base = (base); \
|
/external/kernel-headers/original/linux/ |
nfsacl.h | 51 nfsacl_encode(struct xdr_buf *buf, unsigned int base, struct inode *inode, 54 nfsacl_decode(struct xdr_buf *buf, unsigned int base, unsigned int *aclcnt,
|
/external/oprofile/module/x86/ |
op_apic.h | 45 _set_gate(&descr.base[NMI_VECTOR_NUM], NMI_GATE_TYPE, NMI_DPL_LEVEL, &op_nmi); 56 struct gate_struct * base; member in struct:_descr
|
/external/regex-re2/util/ |
benchmark.cc | 84 int base = 1; local 86 while(base*10 < n) 87 base *= 10; 88 if(n < 2*base) 89 return 2*base; 90 if(n < 5*base) 91 return 5*base; 92 return 10*base;
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
mutable-fst.h | 124 MutableArcIteratorBase<A> *base; // Specific iterator member in struct:fst::MutableArcIteratorData 148 ~MutableArcIterator() { delete data_.base; } 150 bool Done() const { return data_.base->Done(); } 151 const Arc& Value() const { return data_.base->Value(); } 152 void Next() { data_.base->Next(); } 153 void Reset() { data_.base->Reset(); } 154 void Seek(size_t a) { data_.base->Seek(a); } 155 void SetValue(const Arc &a) { data_.base->SetValue(a); }
|
/external/svox/pico/compat/jni/ |
Android.mk | 11 frameworks/base/native/include \
|
/external/valgrind/main/none/tests/x86/ |
bt_everything.c | 7 unsigned int btsl_mem ( char* base, int bitno ) 13 : "=m" (*base), "=q" (res) 15 /* Pretty meaningless to dereference base here, but that's what you 17 base. */ 21 unsigned int btrl_mem ( char* base, int bitno ) 27 : "=m" (*base), "=q" (res) 32 unsigned int btcl_mem ( char* base, int bitno ) 38 : "=m" (*base), "=q" (res) 43 unsigned int btl_mem ( char* base, int bitno ) 49 : "=m" (*base), "=q" (res [all...] |
/external/webkit/Source/WebCore/platform/ |
KURLGooglePrivate.h | 55 void init(const KURL& base, const String& relative, 63 void init(const KURL& base, const CHAR* rel, int relLength,
|
LinkHash.h | 60 // base URL, and returns the hash of the string that will be used for visited 63 LinkHash visitedLinkHash(const KURL& base, const AtomicString& attributeURL); 66 // base URL, and returns the hash of the string that will be used for visited. 68 void visitedURL(const KURL& base, const AtomicString& attributeURL, Vector<UChar, 512>&);
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
ChromiumInit.cpp | 65 static base::Lock lock; 66 base::AutoLock aLock(lock);
|
/external/wpa_supplicant_8/src/crypto/ |
crypto_internal-modexp.c | 16 int crypto_mod_exp(const u8 *base, size_t base_len, 33 if (bignum_set_unsigned_bin(bn_base, base, base_len) < 0 ||
|