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/webkit/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<fileapi::QuotaReservation> reservation,
100 new QuotaReservation(reservation, origin, type));
153 scoped_refptr<fileapi::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<fileapi::QuotaReservation> reservation(
197 CreateQuotaReservation(reservation, origin, type);
94 CreateQuotaReservation( scoped_refptr<fileapi::QuotaReservation> reservation, const GURL& origin, fileapi::FileSystemType type) argument
/external/chromium_org/v8/src/
H A Dplatform-solaris.cc160 void* reservation = mmap(OS::GetRandomMmapAddr(), local
166 if (reservation == MAP_FAILED) return;
168 Address base = static_cast<Address>(reservation);
H A Dplatform-freebsd.cc187 void* reservation = mmap(OS::GetRandomMmapAddr(), local
193 if (reservation == MAP_FAILED) return;
195 Address base = static_cast<Address>(reservation);
H A Dplatform-linux.cc297 void* reservation = mmap(OS::GetRandomMmapAddr(), local
303 if (reservation == MAP_FAILED) return;
305 Address base = static_cast<Address>(reservation);
H A Dplatform-macos.cc189 void* reservation = mmap(OS::GetRandomMmapAddr(), local
195 if (reservation == MAP_FAILED) return;
197 Address base = static_cast<Address>(reservation);
H A Dplatform-openbsd.cc218 void* reservation = mmap(OS::GetRandomMmapAddr(), local
224 if (reservation == MAP_FAILED) return;
226 Address base = static_cast<Address>(reservation);
H A Dplatform-qnx.cc254 void* reservation = mmap(OS::GetRandomMmapAddr(), local
260 if (reservation == MAP_FAILED) return;
262 Address base = static_cast<Address>(reservation);
H A Dspaces.cc312 void MemoryAllocator::FreeMemory(VirtualMemory* reservation, argument
315 ASSERT(reservation->IsReserved());
316 size_t size = reservation->size();
329 static_cast<Address>(reservation->address())));
333 reservation->Release();
368 VirtualMemory reservation(size, alignment);
370 if (!reservation.IsReserved()) return NULL;
371 size_ += reservation.size();
372 Address base = RoundUp(static_cast<Address>(reservation.address()),
374 controller->TakeControl(&reservation);
385 VirtualMemory reservation; local
590 VirtualMemory reservation; local
760 VirtualMemory* reservation = chunk->reserved_memory(); local
[all...]
H A Dserialize.h305 void set_reservation(int space_number, int reservation) {
308 reservations_[space_number] = reservation;
H A Dspaces.h335 void set_reserved_memory(VirtualMemory* reservation) { argument
336 ASSERT_NOT_NULL(reservation);
337 reservation_.TakeControl(reservation);
688 // If the chunk needs to remember its memory reservation, it is stored here.
1124 void FreeMemory(VirtualMemory* reservation, Executability executable);
/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 1259 milliseconds