Home
last modified time | relevance | path

Searched refs:backend (Results 1 – 25 of 214) sorted by relevance

123456789

/external/chromium/chrome/browser/sessions/
Dsession_backend_unittest.cc54 scoped_refptr<SessionBackend> backend( in TEST_F() local
59 backend->AppendCommands(new SessionCommands(commands), false); in TEST_F()
63 backend = NULL; in TEST_F()
64 backend = new SessionBackend(BaseSessionService::SESSION_RESTORE, path_); in TEST_F()
65 backend->ReadLastSessionCommandsImpl(&commands); in TEST_F()
72 backend = NULL; in TEST_F()
73 backend = new SessionBackend(BaseSessionService::SESSION_RESTORE, path_); in TEST_F()
74 backend->ReadLastSessionCommandsImpl(&commands); in TEST_F()
79 backend->DeleteLastSession(); in TEST_F()
80 backend->ReadLastSessionCommandsImpl(&commands); in TEST_F()
[all …]
Dbase_session_service.cc89 backend()->DeleteLastSession(); in DeleteLastSession()
92 backend(), &SessionBackend::DeleteLastSession)); in DeleteLastSession()
114 DCHECK(backend()); in Save()
120 backend()->AppendCommands( in Save()
124 backend(), &SessionBackend::AppendCommands, in Save()
264 backend(), &SessionBackend::ReadLastSessionCommands, request_wrapper)); in ScheduleGetLastSessionCommands()
266 backend()->ReadLastSessionCommands(request); in ScheduleGetLastSessionCommands()
279 NewRunnableMethod(backend(), in ScheduleGetCurrentSessionCommands()
283 backend()->ReadCurrentSessionCommands(request); in ScheduleGetCurrentSessionCommands()
Dsession_service_test_helper.cc51 backend()->ReadLastSessionCommandsImpl(&(read_commands.get())); in ReadWindows()
95 SessionBackend* SessionServiceTestHelper::backend() { in backend() function in SessionServiceTestHelper
96 return service_->backend(); in backend()
/external/chromium/chrome/browser/sync/
Djs_event_handler_list_unittest.cc22 StrictMock<MockJsBackend> backend; in TEST_F() local
34 EXPECT_CALL(backend, SetParentJsEventRouter(&event_handlers)).Times(2); in TEST_F()
36 EXPECT_CALL(backend, RemoveParentJsEventRouter()).Times(2); in TEST_F()
37 EXPECT_CALL(backend, ProcessMessage("test1", HasArgs(args2), &handler1)); in TEST_F()
38 EXPECT_CALL(backend, ProcessMessage("test2", HasArgs(args1), &handler2)); in TEST_F()
48 event_handlers.SetBackend(&backend); in TEST_F()
78 StrictMock<MockJsBackend> backend; in TEST_F() local
90 EXPECT_CALL(backend, SetParentJsEventRouter(&event_handlers)); in TEST_F()
92 EXPECT_CALL(backend, RemoveParentJsEventRouter()); in TEST_F()
94 EXPECT_CALL(backend, ProcessMessage("test1", HasArgs(args2), &handler1)); in TEST_F()
[all …]
Djs_event_handler_list.cc43 void JsEventHandlerList::SetBackend(JsBackend* backend) { in SetBackend() argument
45 DCHECK(backend); in SetBackend()
46 backend_ = backend; in SetBackend()
/external/chromium/chrome/browser/ui/webui/
Dsync_internals_ui.cc27 browser_sync::JsFrontend* backend = GetJsFrontend(); in SyncInternalsUI() local
28 if (backend) { in SyncInternalsUI()
29 backend->AddHandler(this); in SyncInternalsUI()
39 browser_sync::JsFrontend* backend = GetJsFrontend(); in ~SyncInternalsUI() local
40 if (backend) { in ~SyncInternalsUI()
41 backend->RemoveHandler(this); in ~SyncInternalsUI()
62 browser_sync::JsFrontend* backend = GetJsFrontend(); in ProcessWebUIMessage() local
63 if (backend) { in ProcessWebUIMessage()
64 backend->ProcessMessage(name, args, this); in ProcessWebUIMessage()
/external/chromium/net/disk_cache/
Dstats.cc72 bool LoadStats(BackendImpl* backend, Addr address, OnDiskStats* stats) { in LoadStats() argument
73 MappedFile* file = backend->File(address); in LoadStats()
95 bool StoreStats(BackendImpl* backend, Addr address, OnDiskStats* stats) { in StoreStats() argument
96 MappedFile* file = backend->File(address); in StoreStats()
105 bool CreateStats(BackendImpl* backend, Addr* address, OnDiskStats* stats) { in CreateStats() argument
106 if (!backend->CreateBlock(BLOCK_256, 2, address)) in CreateStats()
116 return StoreStats(backend, *address, stats); in CreateStats()
125 bool Stats::Init(BackendImpl* backend, uint32* storage_addr) { in Init() argument
129 if (!LoadStats(backend, address, &stats)) in Init()
132 if (!CreateStats(backend, &address, &stats)) in Init()
[all …]
/external/webkit/Source/WebCore/storage/
DIDBRequest.cpp63 IDBPendingTransactionMonitor::removePendingTransaction(m_transaction->backend()); in IDBRequest()
136 IDBPendingTransactionMonitor::removePendingTransaction(m_transaction->backend()); in resetReadyState()
186 void IDBRequest::onSuccess(PassRefPtr<IDBCursorBackendInterface> backend) in onSuccess() argument
191 … m_result = IDBAny::create(IDBCursor::create(backend, this, m_source.get(), m_transaction.get())); in onSuccess()
193 …m_result = IDBAny::create(IDBCursorWithValue::create(backend, this, m_source.get(), m_transaction.… in onSuccess()
197 void IDBRequest::onSuccess(PassRefPtr<IDBDatabaseBackendInterface> backend) in onSuccess() argument
200 RefPtr<IDBDatabase> idbDatabase = IDBDatabase::create(scriptExecutionContext(), backend); in onSuccess()
220 RefPtr<IDBTransactionBackendInterface> backend = prpBackend; in onSuccess() local
221 …RefPtr<IDBTransaction> frontend = IDBTransaction::create(scriptExecutionContext(), backend, m_sour… in onSuccess()
222 backend->setCallbacks(frontend.get()); in onSuccess()
[all …]
DIDBCursorWithValue.cpp36 …hValue> IDBCursorWithValue::create(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* requ… in create() argument
38 return adoptRef(new IDBCursorWithValue(backend, request, source, transaction)); in create()
41 IDBCursorWithValue::IDBCursorWithValue(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* r… in IDBCursorWithValue() argument
42 : IDBCursor(backend, request, source, transaction) in IDBCursorWithValue()
DIDBObjectStore.cpp73 m_objectStore->get(key, request, m_transaction->backend(), ec); in get()
84 …e->put(value, key, IDBObjectStoreBackendInterface::AddOnly, request, m_transaction->backend(), ec); in add()
95 …ut(value, key, IDBObjectStoreBackendInterface::AddOrUpdate, request, m_transaction->backend(), ec); in put()
106 m_objectStore->deleteFunction(key, request, m_transaction->backend(), ec); in deleteFunction()
117 m_objectStore->clear(request, m_transaction->backend(), ec); in clear()
130 …Interface> index = m_objectStore->createIndex(name, keyPath, unique, m_transaction->backend(), ec); in createIndex()
148 m_objectStore->deleteIndex(name, m_transaction->backend(), ec); in deleteIndex()
161 m_objectStore->openCursor(range, direction, request, m_transaction->backend(), ec); in openCursor()
DIDBIndex.cpp44 IDBIndex::IDBIndex(PassRefPtr<IDBIndexBackendInterface> backend, IDBObjectStore* objectStore, IDBTr… in IDBIndex() argument
45 : m_backend(backend) in IDBIndex()
68 m_backend->openCursor(keyRange, direction, request, m_transaction->backend(), ec); in openCursor()
86 m_backend->openKeyCursor(keyRange, direction, request, m_transaction->backend(), ec); in openKeyCursor()
97 m_backend->get(key, request, m_transaction->backend(), ec); in get()
108 m_backend->getKey(key, request, m_transaction->backend(), ec); in getKey()
DIDBTransaction.cpp44 …riptExecutionContext* context, PassRefPtr<IDBTransactionBackendInterface> backend, IDBDatabase* db) in create() argument
46 return adoptRef(new IDBTransaction(context, backend, db)); in create()
49 …riptExecutionContext* context, PassRefPtr<IDBTransactionBackendInterface> backend, IDBDatabase* db) in IDBTransaction() argument
51 , m_backend(backend) in IDBTransaction()
64 IDBTransactionBackendInterface* IDBTransaction::backend() const in backend() function in WebCore::IDBTransaction
DIDBCursor.cpp42 PassRefPtr<IDBCursor> IDBCursor::create(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* … in create() argument
44 return adoptRef(new IDBCursor(backend, request, source, transaction)); in create()
47 IDBCursor::IDBCursor(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* so… in IDBCursor() argument
48 : m_backend(backend) in IDBCursor()
DIDBDatabase.cpp54 …base::IDBDatabase(ScriptExecutionContext* context, PassRefPtr<IDBDatabaseBackendInterface> backend) in IDBDatabase() argument
56 , m_backend(backend) in IDBDatabase()
88 …m_backend->createObjectStore(name, keyPath, autoIncrement, m_setVersionTransaction->backend(), ec); in createObjectStore()
103 m_backend->deleteObjectStore(name, m_setVersionTransaction->backend(), ec); in deleteObjectStore()
/external/chromium/chrome/browser/policy/
Ddevice_management_service_browsertest.cc95 scoped_ptr<DeviceManagementBackend> backend(service.CreateBackend()); in IN_PROC_BROWSER_TEST_F() local
106 backend->ProcessRegisterRequest("token", "testid", request, &delegate); in IN_PROC_BROWSER_TEST_F()
121 backend->ProcessPolicyRequest(token_, "testid", request, &delegate); in IN_PROC_BROWSER_TEST_F()
133 backend->ProcessUnregisterRequest(token_, "testid", request, &delegate); in IN_PROC_BROWSER_TEST_F()
148 scoped_ptr<DeviceManagementBackend> backend(service.CreateBackend()); in IN_PROC_BROWSER_TEST_F() local
157 backend->ProcessRegisterRequest("token", "testid", request, &delegate); in IN_PROC_BROWSER_TEST_F()
171 backend->ProcessPolicyRequest(token_, "testid", request, &delegate); in IN_PROC_BROWSER_TEST_F()
181 backend->ProcessUnregisterRequest(token_, "testid", request, &delegate); in IN_PROC_BROWSER_TEST_F()
Dmock_device_management_service.h22 explicit ProxyDeviceManagementBackend(DeviceManagementBackend* backend);
53 void set_backend(DeviceManagementBackend* backend) { in set_backend() argument
54 backend_ = backend; in set_backend()
/external/llvm/
DCREDITS.TXT15 D: The Sparc64 backend, provider of much wisdom, and motivator for LLVM
27 D: PowerPC backend developer
42 D: Portions of X86 and Sparc JIT compilers, PowerPC backend
88 D: The ARM backend
101 D: Portions of X86 static and JIT compilers; initial SparcV8 backend
108 D: PPC backend fixes for Linux
111 D: Portions of the PowerPC backend
193 D: Author of the original C backend
207 D: Improvements to the PPC backend, instruction scheduling
221 D: Modulo scheduling in the SparcV9 backend
[all …]
/external/webkit/Source/WebKit/chromium/src/
DIDBCallbacksProxy.cpp72 void IDBCallbacksProxy::onSuccess(PassRefPtr<IDBDatabaseBackendInterface> backend) in onSuccess() argument
74 m_callbacks->onSuccess(new WebIDBDatabaseImpl(backend)); in onSuccess()
82 void IDBCallbacksProxy::onSuccess(PassRefPtr<IDBTransactionBackendInterface> backend) in onSuccess() argument
84 m_callbacks->onSuccess(new WebIDBTransactionImpl(backend)); in onSuccess()
DWebIDBTransactionImpl.cpp40 WebIDBTransactionImpl::WebIDBTransactionImpl(PassRefPtr<IDBTransactionBackendInterface> backend) in WebIDBTransactionImpl() argument
41 : m_backend(backend) in WebIDBTransactionImpl()
/external/llvm/lib/Target/MSP430/
DREADME.txt2 // MSP430 backend.
5 DISCLAIMER: Thid backend should be considered as highly experimental. I never
7 only. The original intention of making this backend was to write documentation
8 of form "How to write backend for dummies" :) Thes notes hopefully will be
/external/chromium/net/http/
Dhttp_cache.cc87 disk_cache::Backend** backend, in CreateBackend() argument
91 thread_, net_log, backend, callback); in CreateBackend()
115 PendingOp() : disk_entry(NULL), backend(NULL), writer(NULL), callback(NULL) {} in PendingOp()
119 disk_cache::Backend* backend; member
143 CompletionCallback* cb, disk_cache::Backend** backend) in WorkItem() argument
145 backend_(backend) {} in WorkItem()
159 bool DoCallback(int result, disk_cache::Backend* backend) { in DoCallback() argument
161 *backend_ = backend; in DoCallback()
413 int HttpCache::GetBackend(disk_cache::Backend** backend, in GetBackend() argument
418 *backend = disk_cache_.get(); in GetBackend()
[all …]
/external/skia/bench/
Dbenchmain.cpp165 Backend backend, GrContext* context) { in make_device() argument
170 switch (backend) { in make_device()
228 Backend backend = kRaster_Backend; // for warning in main() local
327 backend = gConfigs[index].fBackend; in main()
403 backend = gConfigs[configIndex].fBackend; in main()
406 if (kGPU_Backend == backend && NULL == context) { in main()
410 SkDevice* device = make_device(outConfig, dim, backend, context); in main()
424 bool gpu = kGPU_Backend == backend && context; in main()
/external/webkit/Source/autotools/
Dwebkit.m4121 dnl determine the Unicode backend
122 AC_MSG_CHECKING([which Unicode backend to use])
124 AC_HELP_STRING([--with-unicode-backend=@<:@icu/glib@:>@],
125 … [Select Unicode backend (WARNING: the glib-based backend is slow, and incomplete) [default=icu]]),
130 *) AC_MSG_ERROR([Invalid Unicode backend: must be icu or glib.]) ;;
/external/chromium/chrome/browser/autocomplete/
Dhistory_url_provider.h165 void ExecuteWithDB(history::HistoryBackend* backend,
171 void DoAutocomplete(history::HistoryBackend* backend,
270 void CullRedirects(history::HistoryBackend* backend,
/external/chromium/chrome/browser/ssl/
Dssl_policy.h27 explicit SSLPolicy(SSLPolicyBackend* backend);
42 SSLPolicyBackend* backend() const { return backend_; } in backend() function

123456789