/external/chromium/chrome/browser/sessions/ |
D | session_backend_unittest.cc | 54 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 …]
|
D | base_session_service.cc | 89 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()
|
D | session_service_test_helper.cc | 51 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/ |
D | js_event_handler_list_unittest.cc | 22 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 …]
|
D | js_event_handler_list.cc | 43 void JsEventHandlerList::SetBackend(JsBackend* backend) { in SetBackend() argument 45 DCHECK(backend); in SetBackend() 46 backend_ = backend; in SetBackend()
|
/external/chromium/chrome/browser/ui/webui/ |
D | sync_internals_ui.cc | 27 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/linux-tools-perf/Documentation/ |
D | asciidoc.conf | 21 ifdef::backend-docbook[] 27 endif::backend-docbook[] 29 ifdef::backend-docbook[] 67 endif::backend-docbook[] 70 ifdef::backend-docbook[] 85 endif::backend-docbook[] 88 ifdef::backend-xhtml11[] 91 endif::backend-xhtml11[]
|
/external/chromium/net/disk_cache/ |
D | stats.cc | 72 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/ |
D | IDBRequest.cpp | 63 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 …]
|
D | IDBCursorWithValue.cpp | 36 …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()
|
D | IDBObjectStore.cpp | 73 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()
|
D | IDBIndex.cpp | 44 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()
|
D | IDBTransaction.cpp | 44 …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
|
D | IDBCursor.cpp | 42 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()
|
D | IDBDatabase.cpp | 54 …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/libselinux/src/ |
D | label.c | 64 struct selabel_handle *selabel_open(unsigned int backend, in selabel_open() argument 69 if (backend >= ARRAY_SIZE(initfuncs)) { in selabel_open() 74 if (initfuncs[backend] == NULL) in selabel_open() 82 rec->backend = backend; in selabel_open() 85 if ((*initfuncs[backend])(rec, opts, nopts)) { in selabel_open()
|
/external/chromium/chrome/browser/policy/ |
D | device_management_service_browsertest.cc | 95 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()
|
D | mock_device_management_service.h | 22 explicit ProxyDeviceManagementBackend(DeviceManagementBackend* backend); 53 void set_backend(DeviceManagementBackend* backend) { in set_backend() argument 54 backend_ = backend; in set_backend()
|
/external/webkit/Source/WebKit/chromium/src/ |
D | IDBCallbacksProxy.cpp | 72 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()
|
/external/llvm/ |
D | CREDITS.TXT | 15 D: The Sparc64 backend, provider of much wisdom, and motivator for LLVM 27 D: PowerPC backend developer 46 D: Portions of X86 and Sparc JIT compilers, PowerPC backend 102 D: The ARM backend 110 D: Basic-block autovectorization, PowerPC backend improvements 119 D: Portions of X86 static and JIT compilers; initial SparcV8 backend 126 D: PPC backend fixes for Linux 129 D: Portions of the PowerPC backend 213 D: Author of the original C backend 231 D: Improvements to the PPC backend, instruction scheduling [all …]
|
/external/libusb/ |
D | PORTING | 12 libusb's internal "backend" API, which performs the appropriate operations on 15 In terms of USB I/O, your backend provides functionality to submit 17 layers, based on the async interface). Your backend must also provide 20 Your backend must also provide an event handling function to "reap" ongoing 23 The backend must also provide standard functions for other USB operations, 31 at various points in time. Your backend must provide a set of file descriptors 45 Documentation of the backend interface can be found in libusbi.h inside the 57 The Linux backend acts as a good example - view it as a reference 67 2. Implement your backend in the libusb/os/ directory, modifying
|
D | configure.ac | 18 AC_DEFINE(OS_LINUX, [], [Linux backend]) 21 backend="linux" 26 AC_DEFINE(OS_DARWIN, [], [Darwin backend]) 30 backend="darwin" 37 AM_CONDITIONAL([OS_LINUX], [test "x$backend" == "xlinux"]) 38 AM_CONDITIONAL([OS_DARWIN], [test "x$backend" == "xdarwin"])
|
/external/llvm/lib/Target/MSP430/ |
D | README.txt | 2 // 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/ |
D | http_cache.cc | 87 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/webkit/Source/autotools/ |
D | webkit.m4 | 121 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.]) ;;
|