/dports/lang/smalltalk/smalltalk-3.2.5/packages/dbd-sqlite/ |
H A D | sqlite3.c | 77 static VMProxy *vmProxy; variable 131 tmpOOP = vmProxy->objectAlloc (vmProxy->arrayClass, cols); in gst_sqlite3_prepare() 135 tmpOOP = vmProxy->objectAlloc (vmProxy->arrayClass, cols); in gst_sqlite3_prepare() 139 tmpOOP = vmProxy->objectAlloc (vmProxy->arrayClass, cols); in gst_sqlite3_prepare() 221 if (vmProxy->objectIsKindOf (key, vmProxy->smallIntegerClass)) in gst_sqlite3_bind() 224 else if (vmProxy->objectIsKindOf (key, vmProxy->stringClass)) in gst_sqlite3_bind() 236 if (vmProxy->objectIsKindOf (value, vmProxy->smallIntegerClass)) in gst_sqlite3_bind() 244 if (vmProxy->objectIsKindOf (value, vmProxy->stringClass) in gst_sqlite3_bind() 245 || vmProxy->objectIsKindOf (value, vmProxy->byteArrayClass)) in gst_sqlite3_bind() 249 if (vmProxy->objectIsKindOf (value, vmProxy->floatDClass)) in gst_sqlite3_bind() [all …]
|
/dports/lang/smalltalk/smalltalk-3.2.5/packages/xml/expat/ |
H A D | expat.c | 104 static VMProxy *vmProxy; variable 260 attributesArray = vmProxy->objectAlloc (vmProxy->arrayClass, in gst_StartElementHandler() 272 vmProxy->nilOOP, in gst_StartElementHandler() 308 vmProxy->intToOOP (1), in gst_CharacterDataHandler() 309 vmProxy->intToOOP (len), in gst_CharacterDataHandler() 325 vmProxy->stringToOOP (target), in gst_ProcessingInstructionHandler() 326 vmProxy->stringToOOP (data), in gst_ProcessingInstructionHandler() 342 vmProxy->intToOOP (1), in gst_CommentHandler() 458 vmProxy->stringToOOP (prefix), in gst_StartNamespaceDeclHandler() 459 vmProxy->stringToOOP (uri), in gst_StartNamespaceDeclHandler() [all …]
|
/dports/lang/smalltalk/smalltalk-3.2.5/packages/i18n/ |
H A D | i18n.c | 118 static VMProxy *vmProxy; variable 140 return (vmProxy->evalExpr (arraySrc)); in buildArray() 203 lcTime->altDigitsOOP = vmProxy->stringToOOP (""); in loadLocale() 256 lcMonISO->pCsPrecedesOOP = vmProxy->boolToOOP (1); in loadLocale() 257 lcMonISO->nCsPrecedesOOP = vmProxy->boolToOOP (1); in loadLocale() 258 lcMonISO->pSepBySpaceOOP = vmProxy->boolToOOP (0); in loadLocale() 259 lcMonISO->nSepBySpaceOOP = vmProxy->boolToOOP (0); in loadLocale() 260 lcMonISO->pSignPosnOOP = vmProxy->intToOOP (4); in loadLocale() 261 lcMonISO->nSignPosnOOP = vmProxy->intToOOP (4); in loadLocale() 351 vmProxy = proxy; in gst_initModule() [all …]
|
/dports/lang/smalltalk/smalltalk-3.2.5/packages/zlib/ |
H A D | zlib.c | 64 static VMProxy *vmProxy; variable 84 OOP zlibObjOOP = vmProxy->cObjectToOOP (zlib_obj); in gst_deflateInit() 96 OOP zlibObjOOP = vmProxy->cObjectToOOP (zlib_obj); in gst_inflateInit() 112 zs->zlibObject = vmProxy->nilOOP; in gst_deflateEnd() 124 zs->zlibObject = vmProxy->nilOOP; in gst_inflateEnd() 141 size_t outSize = vmProxy->OOPSize (outBytesOOP); in zlib_wrapper() 171 zs->inBytes = vmProxy->nilOOP; in zlib_wrapper() 227 vmProxy = proxy; in gst_initModule() 230 vmProxy->defineCFunc ("gst_deflate", gst_deflate); in gst_initModule() 233 vmProxy->defineCFunc ("gst_inflate", gst_inflate); in gst_initModule() [all …]
|
/dports/lang/smalltalk/smalltalk-3.2.5/packages/digest/ |
H A D | digest.c | 64 static VMProxy *vmProxy; variable 72 return vmProxy->byteArrayToOOP ((char *) &ctx, sizeof (ctx)); in MD5AllocOOP() 80 return vmProxy->byteArrayToOOP ((char *) &ctx, sizeof (ctx)); in SHA1AllocOOP() 86 vmProxy = proxy; in gst_initModule() 87 vmProxy->defineCFunc ("MD5AllocOOP", MD5AllocOOP); in gst_initModule() 88 vmProxy->defineCFunc ("MD5Update", md5_process_bytes); in gst_initModule() 89 vmProxy->defineCFunc ("MD5Final", md5_finish_ctx); in gst_initModule() 91 vmProxy->defineCFunc ("SHA1AllocOOP", SHA1AllocOOP); in gst_initModule() 92 vmProxy->defineCFunc ("SHA1Update", sha1_process_bytes); in gst_initModule() 93 vmProxy->defineCFunc ("SHA1Final", sha1_finish_ctx); in gst_initModule()
|
/dports/lang/smalltalk/smalltalk-3.2.5/packages/gdbm/ |
H A D | gdbm.c | 138 gst_initModule (VMProxy * vmProxy) in gst_initModule() argument 145 vmProxy->defineCFunc ("gdbm_open", gdbm_open); in gst_initModule() 146 vmProxy->defineCFunc ("gdbm_close", gdbm_close); in gst_initModule() 147 vmProxy->defineCFunc ("gdbm_store", wrapped_gdbm_store); in gst_initModule() 148 vmProxy->defineCFunc ("gdbm_fetch", wrapped_gdbm_fetch); in gst_initModule() 149 vmProxy->defineCFunc ("gdbm_delete", wrapped_gdbm_delete); in gst_initModule() 150 vmProxy->defineCFunc ("gdbm_firstkey", wrapped_gdbm_firstkey); in gst_initModule() 151 vmProxy->defineCFunc ("gdbm_nextkey", wrapped_gdbm_nextkey); in gst_initModule() 152 vmProxy->defineCFunc ("gdbm_reorganize", gdbm_reorganize); in gst_initModule()
|
/dports/lang/smalltalk/smalltalk-3.2.5/packages/iconv/ |
H A D | iconv.c | 62 static VMProxy *vmProxy; variable 90 ARRAY_OOP_AT (bytesLeft, 1) = vmProxy->intToOOP (inbytesleft); in iconvWrapper() 91 ARRAY_OOP_AT (bytesLeft, 2) = vmProxy->intToOOP (outbytesleft); in iconvWrapper() 98 vmProxy = proxy; in gst_initModule() 99 vmProxy->defineCFunc ("iconv_open", iconv_open); in gst_initModule() 100 vmProxy->defineCFunc ("iconv_close", iconv_close); in gst_initModule() 101 vmProxy->defineCFunc ("iconvWrapper", iconvWrapper); in gst_initModule()
|
/dports/lang/smalltalk/smalltalk-3.2.5/packages/sdl/libsdl/ |
H A D | gst-sdl.c | 64 VMProxy *vmProxy; variable 87 vmProxy->strMsgSend (blockOOP, "value", NULL); in gst_SDL_StartEventLoop() 101 vmProxy = proxy; in gst_initModule() 102 vmProxy->defineCFunc ("SDL_Init", gst_SDL_Init); in gst_initModule() 103 vmProxy->defineCFunc ("SDL_StartEventLoop", gst_SDL_StartEventLoop); in gst_initModule() 104 vmProxy->defineCFunc ("SDL_StopEventLoop", gst_SDL_StopEventLoop); in gst_initModule()
|
H A D | gst-sdl.h | 60 extern VMProxy *vmProxy;
|
H A D | gst-sdlmain-cocoa.m | 236 vmProxy->strMsgSend (eventLoopBlockOOP, "value", NULL);
|
/dports/lang/smalltalk/smalltalk-3.2.5/packages/blox/tk/ |
H A D | BloxTK.c | 129 static VMProxy *vmProxy; variable 147 oop = vmProxy->idToOOP (atoi (argv[1])); in doCallback() 149 args[i] = vmProxy->stringToOOP (argv[i + 3]); in doCallback() 152 if (vmProxy->vmsgSend (oop, vmProxy->symbolToOOP (argv[2]), args) in doCallback() 153 == vmProxy->trueOOP) in doCallback() 195 vmProxy = proxy; in gst_initModule() 196 vmProxy->defineCFunc ("Tcl_Eval", Tcl_Eval); in gst_initModule() 197 vmProxy->defineCFunc ("Tcl_GetStringResult", Tcl_GetStringResult); in gst_initModule() 198 vmProxy->defineCFunc ("tclInit", tclInit); in gst_initModule() 199 vmProxy->defineCFunc ("bloxIdle", bloxIdle); in gst_initModule()
|
/dports/lang/smalltalk/smalltalk-3.2.5/doc/ |
H A D | gst.texi | 3073 vmProxy = proxy; 3074 vmProxy->defineCFunc ("MD5AllocOOP", MD5AllocOOP); 3076 vmProxy->defineCFunc ("MD5Final", md5_finish_ctx); 3078 vmProxy->defineCFunc ("SHA1AllocOOP", SHA1AllocOOP); 3080 vmProxy->defineCFunc ("SHA1Final", sha1_finish_ctx); 4021 OOP shouldBeThreeOOP = vmProxy->msgSend( 4041 OOP shouldBeThreeOOP = vmProxy->strMsgSend( 4060 shouldBeThreeOOP = vmProxy->vmsgSend( 4077 shouldBeThreeOOP = vmProxy->nvmsgSend( 4668 vmProxy->oopToCObject(action->database), [all …]
|
H A D | gst.info-1 | 2888 vmProxy = proxy; 2889 vmProxy->defineCFunc ("MD5AllocOOP", MD5AllocOOP); 2891 vmProxy->defineCFunc ("MD5Final", md5_finish_ctx); 2893 vmProxy->defineCFunc ("SHA1AllocOOP", SHA1AllocOOP); 2895 vmProxy->defineCFunc ("SHA1Final", sha1_finish_ctx); 3768 OOP shouldBeThreeOOP = vmProxy->msgSend( 3785 OOP shouldBeThreeOOP = vmProxy->strMsgSend( 3801 shouldBeThreeOOP = vmProxy->vmsgSend( 3817 shouldBeThreeOOP = vmProxy->nvmsgSend( 4357 vmProxy->oopToCObject(action->database), [all …]
|