HomeSort by relevance Sort by last modified time
    Searched refs:base (Results 426 - 450 of 5191) sorted by null

<<11121314151617181920>>

  /external/chromium/net/base/
network_config_watcher_mac.cc 5 #include "net/base/network_config_watcher_mac.h"
11 #include "base/compiler_specific.h"
12 #include "base/threading/thread.h"
13 #include "base/threading/thread_restrictions.h"
14 #include "base/mac/scoped_cftyperef.h"
29 class NetworkConfigWatcherMacThread : public base::Thread {
35 // base::Thread
44 base::mac::ScopedCFTypeRef<CFRunLoopSourceRef> run_loop_source_;
53 : base::Thread("NetworkConfigWatcher"),
60 base::ThreadRestrictions::ScopedAllowIO allow_io
    [all...]
host_cache_unittest.cc 5 #include "net/base/host_cache.h"
7 #include "base/format_macros.h"
8 #include "base/stl_util-inl.h"
9 #include "base/string_util.h"
10 #include "base/stringprintf.h"
11 #include "net/base/net_errors.h"
19 const base::TimeDelta kSuccessEntryTTL = base::TimeDelta::FromSeconds(10);
20 const base::TimeDelta kFailureEntryTTL = base::TimeDelta::FromSeconds(0)
    [all...]
  /external/chromium/net/disk_cache/
disk_cache.h 15 #include "base/basictypes.h"
16 #include "base/time.h"
17 #include "net/base/cache_type.h"
18 #include "net/base/completion_callback.h"
22 namespace base { namespace
53 bool force, base::MessageLoopProxy* thread,
104 virtual int DoomEntriesBetween(const base::Time initial_time,
105 const base::Time end_time,
111 virtual int DoomEntriesSince(const base::Time initial_time,
155 virtual base::Time GetLastUsed() const = 0
    [all...]
mem_backend_impl.h 11 #include "base/hash_tables.h"
73 virtual int DoomEntriesBetween(const base::Time initial_time,
74 const base::Time end_time,
76 virtual int DoomEntriesSince(const base::Time initial_time,
85 typedef base::hash_map<std::string, MemEntryImpl*> EntryMap;
92 bool DoomEntriesBetween(const base::Time initial_time,
93 const base::Time end_time);
94 bool DoomEntriesSince(const base::Time initial_time);
  /external/webkit/Source/WebCore/platform/text/
SuffixTree.h 98 for (unsigned base = 0; base < text.length(); ++base) {
100 unsigned limit = std::min(base + m_depth, text.length());
101 for (unsigned offset = 0; base + offset < limit; ++offset) {
103 Node*& child = current->at(Codebook::codeWord(text[base + offset]));
105 child = base + offset + 1 == limit ? &m_leaf : new Node();
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
GeneralSubtree.java 42 * base GeneralName,
54 /** the value of base field of the structure */
55 private final GeneralName base; field in class:GeneralSubtree
63 public GeneralSubtree(GeneralName base, int minimum, int maximum) {
64 this.base = base;
70 * Returns the value of base field of the structure.
73 return base;
88 sb.append(prefix).append(" base: ").append(base).append('\n')
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
queue.h 36 #include <parallel/base.h>
56 T* base; member in class:__gnu_parallel::RestrictedBoundedConcurrentQueue
71 base = new T[max_size];
78 { delete[] base; }
88 *(base + former_front % max_size) = t;
112 t = *(base + (former_front - 1) % max_size);
136 t = *(base + former_back % max_size);
  /external/chromium/base/
file_util_win.cc 5 #include "base/file_util.h"
15 #include "base/file_path.h"
16 #include "base/logging.h"
17 #include "base/metrics/histogram.h"
18 #include "base/win/pe_image.h"
19 #include "base/win/scoped_handle.h"
20 #include "base/string_number_conversions.h"
21 #include "base/string_util.h"
22 #include "base/threading/thread_restrictions.h"
23 #include "base/time.h
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer_thread.h 10 #include "base/callback.h"
11 #include "base/memory/linked_ptr.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/observer_list.h"
14 #include "base/task.h"
15 #include "base/threading/thread.h"
16 #include "base/time.h"
17 #include "base/timer.h"
68 void ScheduleNudge(const base::TimeDelta& delay, NudgeSource source,
72 const base::TimeDelta& delay, NudgeSource source
    [all...]
  /external/svox/pico/lib/
picokpdf.c 49 overview: format of knowledge base pdf file
105 pdfdur->numframes = ((picoos_uint16)(this->base[pos+1])) << 8 |
106 this->base[pos];
108 pdfdur->vecsize = this->base[pos++];
109 pdfdur->sampperframe = this->base[pos++];
110 pdfdur->phonquantlen = this->base[pos++];
111 pdfdur->phonquant = &(this->base[pos]);
113 pdfdur->statequantlen = this->base[pos++];
114 pdfdur->statequant = &(this->base[pos]);
116 pdfdur->content = &(this->base[pos])
    [all...]
  /external/chromium/base/threading/
thread_local_unittest.cc 5 #include "base/logging.h"
6 #include "base/threading/simple_thread.h"
7 #include "base/threading/thread_local.h"
8 #include "base/synchronization/waitable_event.h"
11 namespace base { namespace
15 class ThreadLocalTesterBase : public base::DelegateSimpleThreadPool::Delegate {
17 typedef base::ThreadLocalPointer<ThreadLocalTesterBase> TLPType;
19 ThreadLocalTesterBase(TLPType* tlp, base::WaitableEvent* done)
25 base::WaitableEvent* done_;
30 SetThreadLocal(TLPType* tlp, base::WaitableEvent* done
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_metrics_apitest.cc 7 #include "base/metrics/histogram.h"
20 const char* name; // base name of metric without extension id.
31 const char* name; // base name of metric without extension id.
32 base::Histogram::ClassType type;
37 {"test.h.1", base::Histogram::HISTOGRAM, 1, 100, 50}, // custom
38 {"test.h.2", base::Histogram::LINEAR_HISTOGRAM, 1, 200, 50}, // custom
39 {"test.h.3", base::Histogram::LINEAR_HISTOGRAM, 1, 101, 102}, // percentage
40 {"test.time", base::Histogram::HISTOGRAM, 1, 10000, 50},
41 {"test.medium.time", base::Histogram::HISTOGRAM, 1, 180000, 50},
42 {"test.long.time", base::Histogram::HISTOGRAM, 1, 3600000, 50}
    [all...]
  /external/chromium/chrome/browser/net/
chrome_net_log.cc 9 #include "base/command_line.h"
10 #include "base/logging.h"
11 #include "base/string_util.h"
12 #include "base/values.h"
39 base::AutoLock lock(net_log_->lock_);
46 const base::TimeTicks& time,
85 const base::TimeTicks& time,
89 base::AutoLock lock(lock_);
97 return base::subtle::NoBarrier_AtomicIncrement(&last_id_, 1);
101 base::subtle::Atomic32 log_level = base::subtle::NoBarrier_Load(&log_level_)
    [all...]
  /external/chromium/chrome/browser/
process_info_snapshot_mac_unittest.cc 12 #include "base/command_line.h"
13 #include "base/eintr_wrapper.h"
14 #include "base/file_path.h"
15 #include "base/logging.h"
16 #include "base/process_util.h"
25 std::vector<base::ProcessId> pid_list;
41 base::CommittedKBytes usage;
43 base::WorkingSetKBytes ws_usage;
59 base::ProcessId pid = static_cast<base::ProcessId>(getpid())
    [all...]
browsing_data_remover.h 11 #include "base/memory/ref_counted.h"
12 #include "base/observer_list.h"
13 #include "base/synchronization/waitable_event_watcher.h"
14 #include "base/time.h"
40 public base::WaitableEventWatcher::Delegate {
74 BrowsingDataRemover(Profile* profile, base::Time delete_begin,
75 base::Time delete_end);
80 base::Time delete_end);
118 virtual void OnWaitableEventSignaled(base::WaitableEvent* waitable_event);
161 base::Time CalculateBeginDeleteTime(TimePeriod time_period)
    [all...]
  /external/chromium/chrome/browser/service/
service_process_control_browsertest.cc 5 #include "base/process_util.h"
6 #include "base/test/test_timeouts.h"
19 : service_process_handle_(base::kNullProcessHandle) {
22 base::CloseProcessHandle(service_process_handle_);
23 service_process_handle_ = base::kNullProcessHandle;
75 EXPECT_TRUE(base::WaitForSingleProcess(
81 base::ProcessId service_pid;
83 EXPECT_NE(static_cast<base::ProcessId>(0), service_pid);
84 EXPECT_TRUE(base::OpenProcessHandleWithAccess(
86 base::kProcessAccessWaitForTermination
    [all...]
  /external/chromium/chrome/common/
service_process_util_win.cc 7 #include "base/command_line.h"
8 #include "base/file_util.h"
9 #include "base/logging.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "base/path_service.h"
12 #include "base/string16.h"
13 #include "base/task.h"
14 #include "base/utf_string_conversions.h"
15 #include "base/win/object_watcher.h"
16 #include "base/win/scoped_handle.h
    [all...]
  /hardware/msm7k/libgralloc/
mapper.cpp 68 hnd->base = 0;
71 hnd->base = intptr_t(mappedAddress) + hnd->offset;
75 *vaddr = (void*)hnd->base;
84 void* base = (void*)hnd->base; local
87 base = (void*)(intptr_t(base) - hnd->offset);
90 //ALOGD("unmapping from %p, size=%d, flags=%08x", base, size, hnd->flags);
91 if (munmap(base, size) < 0) {
95 hnd->base = 0
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
GeneralSubtree.java 22 * base GeneralName,
36 private GeneralName base; field in class:GeneralSubtree
45 base = GeneralName.getInstance(seq.getObjectAt(0));
103 * @param base
112 GeneralName base,
116 this.base = base;
131 public GeneralSubtree(GeneralName base)
133 this(base, null, null);
161 return base;
    [all...]
  /external/chromium/chrome/browser/history/
expire_history_backend.h 13 #include "base/basictypes.h"
14 #include "base/gtest_prod_util.h"
15 #include "base/memory/scoped_ptr.h"
16 #include "base/task.h"
17 #include "base/time.h"
51 virtual bool Read(base::Time end_time, HistoryDatabase* db,
81 void StartArchivingOldStuff(base::TimeDelta expiration_threshold);
89 base::Time begin_time, base::Time end_time);
95 void ArchiveHistoryBefore(base::Time end_time)
    [all...]
  /external/chromium/chrome/browser/policy/
file_based_policy_loader.cc 7 #include "base/compiler_specific.h"
10 using ::base::files::FilePathWatcher;
32 settle_interval_(base::TimeDelta::FromSeconds(kSettleIntervalSeconds)) {
76 base::TimeDelta delay;
77 base::Time now = base::Time::Now();
120 const base::Time& now,
121 base::TimeDelta* delay) {
127 base::Time last_modification(provider_delegate->GetLastModification());
140 base::TimeDelta age = now - last_modification_clock_
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
directory_manager.cc 11 #include "base/logging.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/port.h"
14 #include "base/string_util.h"
48 base::AutoLock lock(lock_);
67 base::AutoLock lock(lock_);
70 DCHECK_EQ(base::strcasecmp(name.c_str(),
84 base::AutoLock lock(lock_);
95 base::AutoLock lock(lock_);
97 base::strcasecmp(name.c_str()
    [all...]
  /external/chromium/net/ftp/
ftp_directory_listing_parser.cc 7 #include "base/i18n/icu_encoding_detection.h"
8 #include "base/i18n/icu_string_conversions.h"
9 #include "base/stl_util-inl.h"
10 #include "base/string_split.h"
11 #include "base/string_util.h"
12 #include "net/base/net_errors.h"
28 if (!base::UTF16ToCodepage(entries->at(i).name, encoding.c_str(),
29 base::OnStringConversionError::FAIL,
42 const base::Time& current_time,
46 base::SplitString(text, '\n', &lines)
    [all...]
  /external/chromium/net/socket/
client_socket_handle.h 11 #include "base/logging.h"
12 #include "base/memory/ref_counted.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "base/time.h"
15 #include "net/base/completion_callback.h"
16 #include "net/base/load_states.h"
17 #include "net/base/net_errors.h"
18 #include "net/base/net_log.h"
19 #include "net/base/request_priority.h"
98 base::TimeTicks init_time() const { return init_time_;
    [all...]
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_make_key.c 53 ecc_point *base; local
72 base = NULL;
88 base = ltc_ecc_new_point();
89 if (base == NULL) {
96 if ((err = mp_read_radix(base->x, (char *)key->dp->Gx, 16)) != CRYPT_OK) { goto errkey; }
97 if ((err = mp_read_radix(base->y, (char *)key->dp->Gy, 16)) != CRYPT_OK) { goto errkey; }
98 if ((err = mp_set(base->z, 1)) != CRYPT_OK) { goto errkey; }
102 if ((err = ltc_mp.ecc_ptmul(key->k, base, &key->pubkey, prime, 1)) != CRYPT_OK) { goto errkey; }
111 ltc_ecc_del_point(base);

Completed in 904 milliseconds

<<11121314151617181920>>