Lines Matching refs:SbError

78 SbError convert(rtl::OUString const & source, rtl::OString * target) {  in convert()
88 SbError convert(char const * source, sal_Int32 length, rtl::OUString * target) { in convert()
192 SbError marshal(
196 SbError marshalString( in marshalString()
201 SbError e = convert(variable->GetString(), &str); in marshalString()
213 SbError marshalStruct( in marshalStruct()
221 SbError e = marshal(false, props->Get(i), false, blob, offset, data); in marshalStruct()
229 SbError marshalArray( in marshalArray()
242 SbError e = marshal( in marshalArray()
261 SbError marshal( in marshal()
290 SbError e = marshalString(variable, special, data, &p); in marshal()
300 SbError e = marshalStruct(variable, blob, offset, data); in marshal()
317 SbError e = marshalArray(variable, blob, offset, data); in marshal()
337 SbError e = marshalString(variable, special, data, &p); in marshal()
348 SbError e = marshalStruct(variable, *blob2, 0, data); in marshal()
365 SbError e = marshalArray(variable, *blob2, 0, data); in marshal()
452 SbError unmarshalString(StringData const & data, SbxVariable & result) { in unmarshalString()
466 SbError e = convert(p, len, &str); in unmarshalString()
480 SbError call( in call()
496 SbError e = marshal( in call()
532 SbError e = convert(s1, rtl_str_getLength(s1), &s2); in call()
569 SbError e = unmarshalString(*i, result); in call()
577 SbError getProcData(HMODULE handle, rtl::OUString const & name, ProcData * proc) in getProcData()
594 SbError e = convert(name, &name8); in getProcData()
642 SbError getProc(rtl::OUString const & name, ProcData * proc);
654 SbError Dll::getProc(rtl::OUString const & name, ProcData * proc) { in getProc()
660 SbError e = getProcData(handle, name, proc); in getProc()
701 SbError SbiDllMgr::Call( in Call()
714 SbError e = dll->getProc(function, &proc); in Call()
729 SbError SbiDllMgr::Call( in Call()