Searched refs:reservation (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/chrome/test/chromedriver/net/
H A Dport_server_unittest.cc146 scoped_ptr<PortReservation> reservation; local
147 Status status = server.ReservePort(&port, &reservation);
160 scoped_ptr<PortReservation> reservation; local
161 Status status = server.ReservePort(&port, &reservation);
165 reservation.reset();
166 status = server.ReservePort(&port, &reservation);
179 scoped_ptr<PortReservation> reservation; local
180 Status status = server.ReservePort(&port, &reservation);
185 status = server.ReservePort(&port, &reservation);
194 scoped_ptr<PortReservation> reservation; local
207 scoped_ptr<PortReservation> reservation; local
[all...]
H A Dport_server.h30 // Communicates with a port reservation management server.
38 Status ReservePort(int* port, scoped_ptr<PortReservation>* reservation);
50 // Manages reservation of a block of local ports.
56 Status ReservePort(int* port, scoped_ptr<PortReservation>* reservation);
60 scoped_ptr<PortReservation>* reservation);
H A Dport_server.cc47 scoped_ptr<PortReservation>* reservation) {
62 reservation->reset(new PortReservation(
168 scoped_ptr<PortReservation>* reservation) {
176 reservation->reset(new PortReservation(
184 int* port, scoped_ptr<PortReservation>* reservation) {
198 reservation->reset(new PortReservation(
46 ReservePort(int* port, scoped_ptr<PortReservation>* reservation) argument
167 ReservePort(int* port, scoped_ptr<PortReservation>* reservation) argument
183 ReservePortFromPool( int* port, scoped_ptr<PortReservation>* reservation) argument
/external/chromium_org/storage/browser/fileapi/quota/
H A Dopen_file_handle.cc48 OpenFileHandle::OpenFileHandle(QuotaReservation* reservation, argument
50 : reservation_(reservation),
H A Dquota_reservation_buffer.cc33 QuotaReservation* reservation,
39 return make_scoped_ptr(new OpenFileHandle(reservation, *open_file));
52 << " reservation";
69 void QuotaReservationBuffer::PutReservationToBuffer(int64 reservation) { argument
71 DCHECK_LE(0, reservation);
72 reserved_quota_ += reservation;
32 GetOpenFileHandle( QuotaReservation* reservation, const base::FilePath& platform_path) argument
H A Dopen_file_handle.h57 OpenFileHandle(QuotaReservation* reservation,
H A Dquota_reservation.cc95 const base::WeakPtr<QuotaReservation>& reservation,
100 if (!reservation)
103 return reservation->DidUpdateReservedQuota(
94 AdaptDidUpdateReservedQuota( const base::WeakPtr<QuotaReservation>& reservation, int64 previous_size, const StatusCallback& callback, base::File::Error error, int64 delta) argument
H A Dquota_reservation.h24 // Represents a unit of quota reservation.
71 const base::WeakPtr<QuotaReservation>& reservation,
H A Dquota_reservation_buffer.h42 QuotaReservation* reservation,
/external/chromium_org/content/browser/quota/
H A Dquota_reservation_manager_unittest.cc169 void RefreshReservation(QuotaReservation* reservation, int64 size) { argument
170 DCHECK(reservation);
173 reservation->RefreshReservation(size, base::Bind(&ExpectSuccess, &done));
220 scoped_refptr<QuotaReservation> reservation = local
224 RefreshReservation(reservation.get(), 10 + 20 + 3);
225 int64 cached_reserved_quota = reservation->remaining_quota();
226 FakeWriter writer(reservation->GetOpenFileHandle(file_path()));
236 EXPECT_EQ(3, reservation->remaining_quota());
242 RefreshReservation(reservation.get(), 5);
243 FakeWriter writer(reservation
261 scoped_refptr<QuotaReservation> reservation = local
[all...]
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dquota_reservation_unittest.cc95 scoped_refptr<storage::QuotaReservation> reservation,
100 new QuotaReservation(reservation, origin, type));
153 scoped_refptr<storage::QuotaReservation> reservation(
156 CreateQuotaReservation(reservation, origin, type);
166 // Open a file, refresh the reservation, extend the file, and close it.
182 EXPECT_EQ(amount, reservation->remaining_quota());
185 reservation->remaining_quota());
194 scoped_refptr<storage::QuotaReservation> reservation(
197 CreateQuotaReservation(reservation, origin, type);
94 CreateQuotaReservation( scoped_refptr<storage::QuotaReservation> reservation, const GURL& origin, storage::FileSystemType type) argument
/external/chromium_org/v8/src/base/platform/
H A Dplatform-solaris.cc160 void* reservation = mmap(OS::GetRandomMmapAddr(), local
166 if (reservation == MAP_FAILED) return;
168 uint8_t* base = static_cast<uint8_t*>(reservation);
H A Dplatform-freebsd.cc188 void* reservation = mmap(OS::GetRandomMmapAddr(), local
194 if (reservation == MAP_FAILED) return;
196 uint8_t* base = static_cast<uint8_t*>(reservation);
H A Dplatform-linux.cc312 void* reservation = mmap(OS::GetRandomMmapAddr(), local
318 if (reservation == MAP_FAILED) return;
320 uint8_t* base = static_cast<uint8_t*>(reservation);
H A Dplatform-macos.cc190 void* reservation = mmap(OS::GetRandomMmapAddr(), local
196 if (reservation == MAP_FAILED) return;
198 uint8_t* base = static_cast<uint8_t*>(reservation);
H A Dplatform-openbsd.cc219 void* reservation = mmap(OS::GetRandomMmapAddr(), local
225 if (reservation == MAP_FAILED) return;
227 uint8_t* base = static_cast<uint8_t*>(reservation);
H A Dplatform-qnx.cc255 void* reservation = mmap(OS::GetRandomMmapAddr(), local
261 if (reservation == MAP_FAILED) return;
263 uint8_t* base = static_cast<uint8_t*>(reservation);
/external/chromium_org/v8/src/heap/
H A Dspaces.cc295 void MemoryAllocator::FreeMemory(base::VirtualMemory* reservation, argument
298 DCHECK(reservation->IsReserved());
299 size_t size = reservation->size();
312 static_cast<Address>(reservation->address())));
315 reservation->Release();
347 base::VirtualMemory reservation(size, alignment);
349 if (!reservation.IsReserved()) return NULL;
350 size_ += reservation.size();
352 RoundUp(static_cast<Address>(reservation.address()), alignment);
353 controller->TakeControl(&reservation);
362 base::VirtualMemory reservation; local
557 base::VirtualMemory reservation; local
714 base::VirtualMemory* reservation = chunk->reserved_memory(); local
[all...]
H A Dspaces.h328 void set_reserved_memory(base::VirtualMemory* reservation) { argument
329 DCHECK_NOT_NULL(reservation);
330 reservation_.TakeControl(reservation);
649 // If the chunk needs to remember its memory reservation, it is stored here.
1062 void FreeMemory(base::VirtualMemory* reservation, Executability executable);
/external/chromium_org/v8/src/
H A Dserialize.h250 void set_reservation(int space_number, int reservation) { argument
253 reservations_[space_number] = reservation;
688 // [3..9] reservation sizes for spaces from NEW_SPACE to PROPERTY_CELL_SPACE.
/external/oprofile/events/x86-64/family11h/
H A Devents103 event:0xd6 counters:0,1,2,3 um:zero minimum:500 name:DISPATCH_STALL_FOR_RESERVATION_STATION_FULL : Dispatch stall when reservation stations are full
/external/oprofile/events/x86-64/hammer/
H A Devents98 event:0xd6 counters:0,1,2,3 um:zero minimum:500 name:DISPATCH_STALL_FOR_RESERVATION_STATION_FULL : Dispatch stall when reservation stations are full
/external/iproute2/doc/
H A Dapi-ip6-flowlabels.tex424 Receiver makes reservation with command:
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1336 milliseconds