OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:win_heap
(Results
1 - 2
of
2
) sorted by null
/external/chromium/base/allocator/
win_allocator.cc
9
HANDLE
win_heap
;
variable
12
win_heap
= HeapCreate(0, 0, 0);
13
if (
win_heap
== NULL)
18
HeapSetInformation(
win_heap
, HeapCompatibilityInformation,
29
return HeapAlloc(
win_heap
, 0, size);
33
HeapFree(
win_heap
, 0, size);
43
return HeapReAlloc(
win_heap
, 0, ptr, size);
47
return HeapSize(
win_heap
, 0, ptr);
/external/chromium_org/base/allocator/
win_allocator.cc
9
HANDLE
win_heap
;
variable
12
win_heap
= HeapCreate(0, 0, 0);
13
if (
win_heap
== NULL)
18
HeapSetInformation(
win_heap
, HeapCompatibilityInformation,
29
return HeapAlloc(
win_heap
, 0, size);
33
HeapFree(
win_heap
, 0, size);
43
return HeapReAlloc(
win_heap
, 0, ptr, size);
47
return HeapSize(
win_heap
, 0, ptr);
Completed in 49 milliseconds