/external/chromium_org/net/spdy/ |
spdy_pinnable_buffer_piece.h | 20 // underlying storage. Users may "pin" the buffer at a later time to ensure 40 void Pin();
|
spdy_pinnable_buffer_piece_test.cc | 27 TEST_F(SpdyPinnableBufferPieceTest, Pin) { 37 piece.Pin(); 46 piece.Pin(); 56 piece1.Pin();
|
spdy_pinnable_buffer_piece.cc | 14 void SpdyPinnableBufferPiece::Pin() {
|
spdy_headers_block_parser.cc | 116 key_.Pin(); 119 headers_block_prefix_.Pin();
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
file_cache.h | 87 FileError Pin(const std::string& id);
|
sync_client_unittest.cc | 201 EXPECT_EQ(FILE_ERROR_OK, cache_->Pin(GetLocalId("foo"))); 202 EXPECT_EQ(FILE_ERROR_OK, cache_->Pin(GetLocalId("bar"))); 203 EXPECT_EQ(FILE_ERROR_OK, cache_->Pin(GetLocalId("baz"))); 210 EXPECT_EQ(FILE_ERROR_OK, cache_->Pin(GetLocalId("fetched"))); 216 EXPECT_EQ(FILE_ERROR_OK, cache_->Pin(GetLocalId("dirty")));
|
dummy_file_system.h | 53 virtual void Pin(const base::FilePath& file_path,
|
fake_file_system.h | 81 virtual void Pin(const base::FilePath& file_path,
|
file_cache_unittest.cc | 149 ASSERT_EQ(FILE_ERROR_OK, cache_->Pin(id_pinned)); 207 // Pin a non-existent file. 208 EXPECT_EQ(FILE_ERROR_OK, cache_->Pin(id)); 289 // Pin the existing file. 290 EXPECT_EQ(FILE_ERROR_OK, cache_->Pin(id)); 301 // Pin a non-present file. 306 EXPECT_EQ(FILE_ERROR_OK, cache_->Pin(id_non_present));
|
file_system_interface.h | 301 virtual void Pin(const base::FilePath& file_path,
|
file_system.h | 121 virtual void Pin(const base::FilePath& file_path,
|
fake_file_system.cc | 108 void FakeFileSystem::Pin(const base::FilePath& file_path,
|
file_system.cc | 101 // Used to implement Pin(). 119 return cache->Pin(*local_id); 506 void FileSystem::Pin(const base::FilePath& file_path, [all...] |
file_system_unittest.cc | [all...] |
file_cache.cc | 192 FileError FileCache::Pin(const std::string& id) {
|
sync_client.cc | 113 error = cache->Pin(local_id); 115 LOG(WARNING) << "Failed to pin cache entry: " << local_id;
|
resource_metadata_unittest.cc | 369 // Pin the file. 370 EXPECT_EQ(FILE_ERROR_OK, cache_->Pin(entry.local_id()));
|
/external/chromium_org/chrome/browser/ui/ash/launcher/ |
chrome_launcher_controller.h | 166 void Pin(ash::ShelfID id); 454 // Pin a running app with |shelf_id| internally to |index|. It returns
|
chrome_launcher_controller.cc | 558 void ChromeLauncherController::Pin(ash::ShelfID id) { 607 Pin(id); [all...] |
chrome_launcher_controller_browsertest.cc | 410 // Pin the app. The item should remain. 411 controller_->Pin(id); [all...] |
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/ |
private_api_drive.cc | 532 if (params->pin) { 533 file_system->Pin(drive_path, [all...] |