OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BSTR
(Results
1 - 4
of
4
) sorted by null
/external/chromium/base/win/
scoped_bstr.h
19
// Manages a
BSTR
string pointer.
26
// Constructor to create a new
BSTR
.
28
// NOTE: Do not pass a
BSTR
to this constructor expecting ownership to
33
// Give ScopedBstr ownership over an already allocated
BSTR
or NULL.
34
// If you need to allocate a new
BSTR
instance, use |allocate| instead.
35
void Reset(
BSTR
bstr
= NULL);
37
// Releases ownership of the
BSTR
to the caller.
38
BSTR
Release();
40
// Creates a new
BSTR
from a 16-bit C-style string
[
all
...]
/external/chromium_org/base/win/
scoped_bstr.h
18
// Manages a
BSTR
string pointer.
25
// Constructor to create a new
BSTR
.
27
// NOTE: Do not pass a
BSTR
to this constructor expecting ownership to
32
// Give ScopedBstr ownership over an already allocated
BSTR
or NULL.
33
// If you need to allocate a new
BSTR
instance, use |allocate| instead.
34
void Reset(
BSTR
bstr
= NULL);
36
// Releases ownership of the
BSTR
to the caller.
37
BSTR
Release();
39
// Creates a new
BSTR
from a 16-bit C-style string
[
all
...]
/external/lzma/CPP/Common/
MyCom.h
81
inline HRESULT StringToBstr(LPCOLESTR src,
BSTR
*
bstr
)
83
*
bstr
= ::SysAllocString(src);
84
return (*
bstr
!= 0) ? S_OK : E_OUTOFMEMORY;
90
BSTR
m_str;
123
operator
BSTR
() const { return m_str; }
124
BSTR
* operator&() { return &m_str; }
125
BSTR
MyCopy() const
128
BSTR
res = ::SysAllocStringByteLen(NULL, byteLen);
133
void Attach(
BSTR
src) { m_str = src; }
[
all
...]
MyWindows.h
52
typedef OLECHAR *
BSTR
;
171
BSTR
bstrVal;
184
MY_EXTERN_C
BSTR
SysAllocStringByteLen(LPCSTR psz, UINT len);
185
MY_EXTERN_C
BSTR
SysAllocString(const OLECHAR *sz);
186
MY_EXTERN_C void SysFreeString(
BSTR
bstr
);
187
MY_EXTERN_C UINT SysStringByteLen(
BSTR
bstr
);
188
MY_EXTERN_C UINT SysStringLen(
BSTR
bstr
);
[
all
...]
Completed in 268 milliseconds