/aoo4110/main/xmlscript/source/xmldlg_imexp/ |
H A D | xmldlg_impmodels.cxx | 63 ControlImportContext ctx( in endElement() local 87 ctx.importEvents( _events ); in endElement() 118 ControlImportContext ctx( in endElement() local 195 ControlImportContext ctx( in endElement() local 247 ControlImportContext ctx( in endElement() local 273 ctx.importBooleanProperty( in endElement() 319 ControlImportContext ctx( in endElement() local 345 ctx.importBooleanProperty( in endElement() 497 ControlImportContext ctx( in endElement() local 583 ControlImportContext ctx( in endElement() local [all …]
|
/aoo4110/main/sal/rtl/source/ |
H A D | digest.c | 427 sal_uInt8 *p = ctx->m_pData + ctx->m_nDatLen; in rtl_digest_updateMD2() 592 A = ctx->m_nA; in __rtl_digest_updateMD5() 792 if (len < ctx->m_nL) ctx->m_nH += 1; in rtl_digest_updateMD5() 1269 if (len < ctx->m_nL) ctx->m_nH += 1; in rtl_digest_updateSHA() 1457 if (len < ctx->m_nL) ctx->m_nH += 1; in rtl_digest_updateSHA1() 1613 &(ctx->m_hash), ctx->m_opad, DIGEST_CBLOCK_HMAC_MD5); in __rtl_digest_ipadHMAC_MD5() 1698 &(ctx->m_hash), ctx->m_opad, RTL_DIGEST_LENGTH_MD5); in rtl_digest_initHMAC_MD5() 1756 rtl_digest_updateMD5 (&(ctx->m_hash), ctx->m_opad, 64); in rtl_digest_getHMAC_MD5() 1842 &(ctx->m_hash), ctx->m_opad, DIGEST_CBLOCK_HMAC_SHA1); in __rtl_digest_ipadHMAC_SHA1() 1927 &(ctx->m_hash), ctx->m_opad, RTL_DIGEST_LENGTH_SHA1); in rtl_digest_initHMAC_SHA1() [all …]
|
H A D | cipher.c | 233 CipherContextBF *ctx, 669 rtl_zeroMemory (&(ctx->m_iv), sizeof(ctx->m_iv)); in __rtl_cipherBF_init() 670 ctx->m_offset = 0; in __rtl_cipherBF_init() 881 k = ctx->m_offset; in __rtl_cipherBF_updateCFB() 1170 S = &(ctx->m_S[0]); in rtl_cipherARCFOUR_init_Impl() 1192 ctx->m_X = 0; in rtl_cipherARCFOUR_init_Impl() 1193 ctx->m_Y = 0; in rtl_cipherARCFOUR_init_Impl() 1222 x = ctx->m_X; in rtl_cipherARCFOUR_update_Impl() 1223 y = ctx->m_Y; in rtl_cipherARCFOUR_update_Impl() 1226 ctx->m_X = x; in rtl_cipherARCFOUR_update_Impl() [all …]
|
/aoo4110/main/libxmlsec/ |
H A D | xmlsec1-nssmangleciphers.patch | 447 - keyItem.data = ctx->key; 450 - ivItem.data = ctx->iv; 483 ctx->cipherCtx = PK11_CreateContextBySymKey(ctx->cipher, 486 + ctx->symkey, secParam); 853 - ctx->keySize = 24; 861 - ctx->keySize = 16; 865 - ctx->keySize = 24; 869 - ctx->keySize = 32; 947 + ctx->cipherCtx = NULL ; 999 - xmlSecAssert2(ctx->keySize <= sizeof(ctx->key), -1); [all …]
|
H A D | xmlsec1-customkeymanage.patch | 2407 + ctx->material = NULL ; 2720 + ret = xmlSecNssKWDes3Encrypt( ctx->symkey, ctx->cipher, 2751 + ret = xmlSecNssKWDes3Encrypt( ctx->symkey, ctx->cipher, 2775 + ret = xmlSecNssKWDes3Encrypt( ctx->symkey, ctx->cipher, 2801 + ret = xmlSecNssKWDes3Encrypt( ctx->symkey, ctx->cipher, 3011 + switch( ctx->cipher ) { 3797 + if( ctx->slot != NULL ) { 3799 + ctx->slot = NULL ; 3804 + ctx->symkey = NULL ; 4246 + ctx->slot = slot ; [all …]
|
/aoo4110/main/testtools/source/bridgetest/pyuno/ |
H A D | importer.py | 29 def __init__(self,method,ctx): argument 31 self.ctx = ctx 34 self.tobj = self.ctx.ServiceManager.createInstanceWithContext( \ 35 "com.sun.star.test.bridge.CppTestObject",self.ctx) 48 e.Source = self.ctx 49 e = EventObject( self.ctx ) 53 ctx = uno.getComponentContext() 61 ctx , ctx, ("acceptor.uno","connector.uno"), "com.sun.star.loader.SharedLibrary" ) 67 def suite( ctx ): argument 69 suite.addTest(ImporterTestCase("testStandard",ctx)) [all …]
|
H A D | core.py | 27 def suite(ctx): argument 29 suite.addTest(TestCase("testErrors",ctx)) 32 suite.addTest(TestCase("testStruct",ctx)) 33 suite.addTest(TestCase("testType",ctx)) 34 suite.addTest(TestCase("testEnum",ctx)) 35 suite.addTest(TestCase("testBool",ctx)) 36 suite.addTest(TestCase("testChar",ctx)) 42 suite.addTest(TestCase("testInvoke",ctx)) 78 def __init__(self,method,ctx): argument 80 self.ctx = ctx [all …]
|
H A D | impl.py | 87 def __init__(self,method,ctx): argument 89 self.ctx = ctx 92 self.tobj = self.ctx.ServiceManager.createInstanceWithContext( \ 94 self.pipe = self.ctx.ServiceManager.createInstanceWithContext( \ 95 "com.sun.star.io.Pipe" , self.ctx ) 98 dataOut = self.ctx.ServiceManager.createInstanceWithContext( \ 99 "com.sun.star.io.DataOutputStream", self.ctx ) 106 dataInput = self.ctx.ServiceManager.createInstanceWithContext( \ 107 "com.sun.star.io.DataInputStream", self.ctx ) 182 def suite( ctx ): argument [all …]
|
H A D | main.py | 30 ctx = uno.getComponentContext() variable 32 unohelper.addComponentsToContext(ctx,ctx,(os.environ["FOO"]+"/cppobj.uno",os.environ["FOO"]+"/bridg… 34 unohelper.addComponentsToContext(ctx,ctx,("vnd.openoffice.pymodule:samplecomponent",),"com.sun.star… 39 suite.addTest(importer.suite(ctx)) 40 suite.addTest(core.suite(ctx)) 41 suite.addTest(impl.suite(ctx))
|
H A D | testcomp.py | 24 ctx = uno.getComponentContext() variable 26 loader = pythonloader.Loader( ctx ) 27 comp = loader.activate( "org.openoffice.comp.pyuno.PythonTestObject" , "", "samplecomponent", ctx ) 28 ctx.ServiceManager.insert( comp) 30 bridgetest = ctx.ServiceManager.createInstanceWithContext( "com.sun.star.test.bridge.BridgeTest", c…
|
/aoo4110/main/scripting/source/pyprov/ |
H A D | mailmerge.py | 72 def __init__( self, ctx ): argument 73 self.ctx = ctx 219 ctx = uno.getComponentContext() 270 def __init__( self, ctx ): argument 271 self.ctx = ctx 339 def __init__( self, ctx ): argument 340 self.ctx = ctx 415 def __init__( self, ctx ): argument 418 self.ctx = ctx 423 return PyMailSMTPService(self.ctx); [all …]
|
H A D | pythonscript.py | 176 def __init__( self, ctx, location ): argument 182 …self.m_uriRefFac = ctx.ServiceManager.createInstanceWithContext("com.sun.star.uri.UriReferenceFact… 263 def __init__( self, ctx, doc, inv ): argument 264 self.ctx = ctx 276 "com.sun.star.frame.Desktop", self.ctx ) 279 return self.ctx 510 servicename, ctx ) 760 def getModelFromDocUrl(ctx, url): argument 902 def __init__( self, ctx, *args ): argument 925 ctx).createDocumentContent(doc) [all …]
|
/aoo4110/main/testtools/com/sun/star/comp/bridge/ |
H A D | TestComponentMain.java | 47 XComponentContext ctx; field in TestComponentMain.InstanceProvider 49 public InstanceProvider( XComponentContext ctx ) in InstanceProvider() argument 51 this.ctx = ctx; in InstanceProvider() 60 o = ctx.getServiceManager().createInstanceWithContext( in getInstance() 61 "com.sun.star.comp.bridge.TestComponent$_TestObject" , ctx ); in getInstance() 98 … XComponentContext ctx = com.sun.star.comp.helper.Bootstrap.createInitialComponentContext( null ); in main() local 99 XMultiComponentFactory smgr = ctx.getServiceManager(); in main() 109 XAcceptor xAcceptor = Acceptor.create(ctx); in main() 119 smgr.createInstanceWithContext("com.sun.star.bridge.BridgeFactory",ctx)); in main() 122 "", protDcp, xConnection, new InstanceProvider(ctx)); in main()
|
/aoo4110/main/pyuno/source/loader/ |
H A D | pythonloader.py | 62 def __init__(self, ctx ): argument 65 self.ctx = ctx 72 exp = self.ctx.getValueByName( "/singletons/com.sun.star.util.theMacroExpander" ) 121 return mod.getComponentFactory( implementationName, self.ctx.ServiceManager, regKey ) 123 … return implHelper.getComponentFactory( implementationName,regKey,self.ctx.ServiceManager) 132 return mod.writeRegistryInfo( self.ctx.ServiceManager, regKey ) 134 return implHelper.writeRegistryInfo( regKey, self.ctx.ServiceManager )
|
/aoo4110/main/sal/osl/unx/ |
H A D | backtrace.c | 65 jmp_buf ctx; in backtrace() local 76 setjmp(ctx); in backtrace() 78 fpval = ((long*)(ctx))[FRAME_PTR_OFFSET]; in backtrace() 152 jmp_buf ctx; in backtrace() local 155 setjmp(ctx); in backtrace() 156 fp = (struct frame*)(((size_t*)(ctx))[FRAME_PTR_OFFSET]); in backtrace() 231 jmp_buf ctx; in backtrace() local 239 setjmp(ctx); in backtrace() 240 fp = (struct frame*)(((size_t*)(ctx))[FRAME_PTR_OFFSET]); in backtrace()
|
/aoo4110/main/pyuno/demo/ |
H A D | swritercomp.py | 45 def __init__( self, ctx ): argument 46 self.ctx = ctx 51 ctx = self.ctx 52 smgr = ctx.ServiceManager 53 desktop = smgr.createInstanceWithContext( "com.sun.star.frame.Desktop",ctx)
|
H A D | hello_world_comp.py | 30 def __init__( self, ctx ): argument 32 self.ctx = ctx 38 desktop = self.ctx.ServiceManager.createInstanceWithContext( 39 "com.sun.star.frame.Desktop", self.ctx )
|
/aoo4110/main/pyuno/source/module/ |
H A D | pyuno_runtime.cxx | 255 c->xContext = ctx; in create() 257 ctx->getServiceManager()->createInstanceWithContext( in create() 259 ctx ), in create() 267 ctx->getServiceManager()->createInstanceWithContext( in create() 269 ctx ), in create() 277 ctx->getServiceManager()->createInstanceWithContext( in create() 279 ctx ), in create() 289 ctx ), in create() 299 ctx ), in create() 306 Any a = ctx->getValueByName(OUString( in create() [all …]
|
/aoo4110/main/scripting/workben/ifc/scripting/ |
H A D | _XScriptInvocation.java | 92 XModel ctx = null; in runInvokeTest() local 94 ctx = loadDocument(context); in runInvokeTest() 99 if (ctx != null) in runInvokeTest() 100 map.put("SCRIPTING_DOC_REF", ctx); in runInvokeTest() 136 if (ctx != null) in runInvokeTest() 137 ctx.dispose(); in runInvokeTest()
|
/aoo4110/main/ridljar/test/com/sun/star/uno/ |
H A D | Type_Test.java | 93 Type ctx = new Type(com.sun.star.uno.XComponentContext.class); in testIsSupertypeOf() local 101 assure("XInterface :> XComponentContext", ifc.isSupertypeOf(ctx)); in testIsSupertypeOf() 102 assure("not XComponentContext :> XInterface", !ctx.isSupertypeOf(ifc)); in testIsSupertypeOf() 104 ctx.isSupertypeOf(ctx)); in testIsSupertypeOf()
|
/aoo4110/main/unoxml/source/dom/ |
H A D | documentbuilder.cxx | 245 static xmlParserInputPtr resolve_func(void *ctx, in resolve_func() argument 250 xmlParserCtxtPtr ctxt = (xmlParserCtxtPtr)ctx; in resolve_func() 289 static void warning_func(void * ctx, const char * /*msg*/, ...) in warning_func() argument 292 buf.append(make_error_message(static_cast< xmlParserCtxtPtr >(ctx))); in warning_func() 298 static void error_func(void * ctx, const char * /*msg*/, ...) in error_func() argument 301 buf.append(make_error_message(static_cast< xmlParserCtxtPtr >(ctx))); in error_func()
|
/aoo4110/main/svtools/source/java/ |
H A D | javacontext.cxx | 37 JavaContext::JavaContext( const Reference< XCurrentContext > & ctx ) in JavaContext() argument 40 m_xNextContext( ctx ), in JavaContext() 45 JavaContext::JavaContext( const Reference< XCurrentContext > & ctx, in JavaContext() argument 48 m_xNextContext( ctx ), in JavaContext()
|
/aoo4110/main/slideshow/source/engine/OGLTrans/ |
H A D | OGLTrans_TransitionerImpl.cxx | 228 unx::GLXContext ctx; 606 GLWin.ctx = glXCreateContext(GLWin.dpy, in createWindow() 610 if( GLWin.ctx == NULL ) { in createWindow() 643 if( !glXMakeCurrent( GLWin.dpy, GLWin.win, GLWin.ctx ) ) { in createWindow() 835 if(GLWin.ctx)//if we have a rendering context, let's init the slides in createWindow() 1136 glXMakeCurrent( GLWin.dpy, GLWin.win, GLWin.ctx ); in createWindow() 1195 if(GLWin.ctx) in createWindow() 1201 glXDestroyContext(GLWin.dpy, GLWin.ctx); in createWindow() 1202 GLWin.ctx = NULL; in createWindow() 1218 glXMakeCurrent( GLWin.dpy, GLWin.win, GLWin.ctx ); in createWindow() [all …]
|
/aoo4110/main/unoxml/source/xpath/ |
H A D | xpathapi.cxx | 131 xmlXPathContextPtr ctx, in lcl_registerNamespaces() argument 143 xmlXPathRegisterNs(ctx, p, u); in lcl_registerNamespaces() 191 xmlXPathContextPtr ctx, in lcl_registerExtensions() argument 200 xmlXPathRegisterFuncLookup(ctx, in lcl_registerExtensions() 208 xmlXPathRegisterVariableLookup(ctx, in lcl_registerExtensions()
|
/aoo4110/main/odk/examples/DevelopersGuide/ProfUNO/InterprocessConn/ |
H A D | ConnectionAwareClient.java | 56 public ConnectionAwareClient( XComponentContext ctx , String url ) in ConnectionAwareClient() argument 59 _ctx = ctx; in ConnectionAwareClient() 241 XComponentContext ctx = in main() local 244 ConnectionAwareClient connAware = new ConnectionAwareClient( ctx, args[0]); in main()
|