/external/iproute2/tc/ |
m_ematch.h | 13 struct bstr struct 18 struct bstr *next; 21 extern struct bstr * bstr_alloc(const char *text); 23 static inline struct bstr * bstr_new(char *data, unsigned int len) 25 struct bstr *b = calloc(1, sizeof(*b)); 36 static inline int bstrcmp(struct bstr *b, const char *text) 47 static inline struct bstr *bstr_next(struct bstr *b) 52 extern unsigned long bstrtoul(const struct bstr *b); 53 extern void bstr_print(FILE *fd, const struct bstr *b, int ascii) [all...] |
em_meta.c | 125 static struct meta_entry * lookup_meta_entry(struct bstr *kind) 161 struct bstr *a = (struct bstr *) val; 248 static inline struct bstr * 249 parse_object(struct bstr *args, struct bstr *arg, struct tcf_meta_val *obj, 254 struct bstr *a; 359 struct bstr *args) 362 struct bstr *a;
|
em_nbyte.c | 41 struct bstr *args) 43 struct bstr *a; 44 struct bstr *needle = args;
|
emp_ematch.y | 16 struct bstr *b;
|
m_ematch.c | 257 int em_parse_error(int err, struct bstr *args, struct bstr *carg, 495 struct bstr * bstr_alloc(const char *text) 497 struct bstr *b = calloc(1, sizeof(*b)); 513 unsigned long bstrtoul(const struct bstr *b) 529 void bstr_print(FILE *fd, const struct bstr *b, int ascii) 560 struct bstr *b;
|
em_cmp.c | 41 struct bstr *args) 43 struct bstr *a;
|
em_u32.c | 37 struct bstr *args) 39 struct bstr *a;
|
/external/chromium/base/win/ |
scoped_bstr.cc | 17 COMPILE_ASSERT(sizeof(ScopedBstr) == sizeof(BSTR), ScopedBstrSize); 21 void ScopedBstr::Reset(BSTR bstr) { 22 if (bstr != bstr_) { 25 bstr_ = bstr; 29 BSTR ScopedBstr::Release() { 30 BSTR bstr = bstr_; local 32 return bstr; 36 BSTR tmp = bstr_ [all...] |
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.cc | 17 COMPILE_ASSERT(sizeof(ScopedBstr) == sizeof(BSTR), ScopedBstrSize); 21 void ScopedBstr::Reset(BSTR bstr) { 22 if (bstr != bstr_) { 25 bstr_ = bstr; 29 BSTR ScopedBstr::Release() { 30 BSTR bstr = bstr_; local 32 return bstr; 36 BSTR tmp = bstr_ [all...] |
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/chromium/third_party/libjingle/source/talk/base/ |
winfirewall.cc | 154 _bstr_t bstr = filename; local 155 hr = app->put_ProcessImageFileName(bstr); 156 bstr = friendly_name; 158 hr = app->put_Name(bstr);
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
winfirewall.cc | 154 _bstr_t bstr = filename; local 155 hr = app->put_ProcessImageFileName(bstr); 156 bstr = friendly_name; 158 hr = app->put_Name(bstr);
|
/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...] |
/external/chromium_org/chrome_frame/test/ |
ui_test.cc | 350 base::win::ScopedBstr bstr; local 351 HRESULT hr = browser->get_LocationURL(bstr.Receive()); 354 DCHECK(bstr.Length()); 356 hr = browser->Navigate(bstr, &empty, &empty, &empty, &empty); [all...] |