Displaying 7 results from an estimated 7 matches for "get_allocator".
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...{
size_t k0 = db.names.size();
t = parse_template_param(first, last, db);
size_t k1 = db.names.size();
if (t != first && k1 == k0 + 1)
{
db.subs.push_back(typename C::sub_type(1, db.names.back(), db.names.get_allocator()));
first = t;
}
else
{
for (; k1 != k0; --k1)
db.names.pop_back();
}
break;
}
case 'D':
t = parse_decltype(first, last, db);...
2009 Oct 12
1
First draft: node storage admin
This patch provides the ability to create a "dir" type storage pool, and to add
and remove volumes for existing pools.
2009 Oct 27
1
Storage admin patches
This set of patches supercedes the previous set, and has been rebased
with changes from upstream.
2009 Nov 09
1
Rebased again...
This patch again rebases on upstream and should apply on next as of right now.
2009 Oct 14
0
[PATCH node] Provides a new storage administration system to the managed node.
Users can now:
* Add a new storage pool.
* Delete a storage pool.
* Start and stop storage pools.
* Add a new storage volume.
* Delete a storage volume.
* List existing storage pools, with details.
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
Makefile.am | 31 +++++---
nodeadmin/addpool.py | 182 ++++++++++++++++++++++++++++++++++++++++++++
2009 Oct 21
1
Storage administration and refactoring of domain admin
This pair of patches provide a new storage admin interface. Then, on top of that,
it refactors the domain administration pieces to now properly use storage pools
and volumes when defining a new VM.
2011 Oct 21
0
Wine release 1.3.31
...es.
msvcp90: Added basic_string::rfind implementation.
msvcp90: Added basic_string::find_last_not_of implementation.
msvcp90: Added basic_string::replace iterator based functions.
msvcp90: Added basic_string::erase iterator based functions.
msvcp90: Added basic_string::get_allocator implementation.
msvcp90: Fix buffer size in basic_string_char_grow.
msvcp90: Use debugstr_a to avoid overflow in traces.
msvcp: Sync spec files.
msvcrt: Initialize all ctype fields.
shell32: Don't convert output parameter in SHBrowseForFolderA (Valgrind).
she...