OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebIDBCursorImpl
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/content/child/indexed_db/
webidbcursor_impl.cc
20
WebIDBCursorImpl
::
WebIDBCursorImpl
(int32 ipc_cursor_id,
31
WebIDBCursorImpl
::~
WebIDBCursorImpl
() {
47
void
WebIDBCursorImpl
::advance(unsigned long count,
61
void
WebIDBCursorImpl
::continueFunction(const WebIDBKey& key,
66
void
WebIDBCursorImpl
::continueFunction(const WebIDBKey& key,
109
void
WebIDBCursorImpl
::postSuccessHandlerCallback() {
122
void
WebIDBCursorImpl
::SetPrefetchData(
136
void
WebIDBCursorImpl
::CachedAdvance(unsigned long count
[
all
...]
webidbcursor_impl.h
25
class CONTENT_EXPORT
WebIDBCursorImpl
28
WebIDBCursorImpl
(int32 ipc_cursor_id,
31
virtual ~
WebIDBCursorImpl
();
webidbcursor_impl_unittest.cc
144
WebIDBCursorImpl
cursor(
WebIDBCursorImpl
::kInvalidCursorId,
151
for (int i = 0; i <
WebIDBCursorImpl
::kPrefetchContinueThreshold; ++i) {
208
WebIDBCursorImpl
::kInvalidCursorId);
213
WebIDBCursorImpl
cursor(
WebIDBCursorImpl
::kInvalidCursorId,
219
for (int i = 0; i <
WebIDBCursorImpl
::kPrefetchContinueThreshold; ++i) {
228
EXPECT_EQ(static_cast<int>(
WebIDBCursorImpl
::kPrefetchContinueThreshold),
274
cursor.advance(
WebIDBCursorImpl
::kMaxPrefetchAmount,
278
EXPECT_EQ(static_cast<int>(
WebIDBCursorImpl
::kPrefetchContinueThreshold)
[
all
...]
indexed_db_dispatcher_unittest.cc
195
params.ipc_cursor_id =
WebIDBCursorImpl
::kInvalidCursorId;
202
WebIDBCursorImpl
* impl = static_cast<
WebIDBCursorImpl
*>(cursor.get());
245
class MockCursor : public
WebIDBCursorImpl
{
250
:
WebIDBCursorImpl
(ipc_cursor_id, transaction_id, thread_safe_sender),
282
new MockCursor(
WebIDBCursorImpl
::kInvalidCursorId,
287
new MockCursor(
WebIDBCursorImpl
::kInvalidCursorId,
indexed_db_dispatcher.h
41
class
WebIDBCursorImpl
;
253
// transaction_id. Used to assign the transaction_id to the
WebIDBCursorImpl
257
// Map from cursor id to
WebIDBCursorImpl
.
258
std::map<int32,
WebIDBCursorImpl
*> cursors_;
indexed_db_dispatcher.cc
627
WebIDBCursorImpl
* cursor = new
WebIDBCursorImpl
(
681
std::map<int32,
WebIDBCursorImpl
*>::const_iterator cur_iter =
792
typedef std::map<int32,
WebIDBCursorImpl
*>::iterator Iterator;
Completed in 276 milliseconds