HomeSort by relevance Sort by last modified time
    Searched defs:module (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /webstack/webstack/branches/CoolStack12Rtm/src/mod_perl-2.0.2/t/htdocs/modperl/setupenv2/
module.pm 1 package htdocs::modperl::setupenv2::module;
  /webstack/webstack/branches/CoolStack12Rtm/src/mod_perl-2.0.2/t/response/TestAPI/
module.pm 1 package TestAPI::module;
11 use Apache2::Module ();
21 my $top_module = Apache2::Module::top_module();
32 my $core = Apache2::Module::find_linked_module('core.c');
36 ok t_cmp Apache2::Module::loaded('mod_perl.c'), 1,
37 "Apache2::Module::loaded('mod_perl.c')";
39 ok t_cmp Apache2::Module::loaded('Apache__Module_foo.c'), 0,
40 "Apache2::Module::loaded('Apache__Module_foo.c')";
46 ok t_cmp Apache2::Module::loaded('mod_perl.so'), $expect,
47 "Apache2::Module::loaded('mod_perl.so')"
    [all...]
  /webstack/webstack/branches/CoolStack12Rtm/src/php-5.2.4/ext/ncurses/
ncurses.php 2 $module = 'ncurses'; variable
3 $function = 'confirm_' . $module . '_compiled';
4 if (extension_loaded($module)) {
5 $str = $function($module);
7 $str = "Module $module is not compiled into PHP";
  /webstack/webstack/trunk/src/mod_perl-2.0.2/t/htdocs/modperl/setupenv2/
module.pm 1 package htdocs::modperl::setupenv2::module;
  /webstack/webstack/trunk/src/mod_perl-2.0.2/t/response/TestAPI/
module.pm 1 package TestAPI::module;
11 use Apache2::Module ();
21 my $top_module = Apache2::Module::top_module();
32 my $core = Apache2::Module::find_linked_module('core.c');
36 ok t_cmp Apache2::Module::loaded('mod_perl.c'), 1,
37 "Apache2::Module::loaded('mod_perl.c')";
39 ok t_cmp Apache2::Module::loaded('Apache__Module_foo.c'), 0,
40 "Apache2::Module::loaded('Apache__Module_foo.c')";
46 ok t_cmp Apache2::Module::loaded('mod_perl.so'), $expect,
47 "Apache2::Module::loaded('mod_perl.so')"
    [all...]
  /webstack/webstack/trunk/src/php-5.2.0/ext/ncurses/
ncurses.php 2 $module = 'ncurses'; variable
3 $function = 'confirm_' . $module . '_compiled';
4 if (extension_loaded($module)) {
5 $str = $function($module);
7 $str = "Module $module is not compiled into PHP";
  /webstack/webstack/trunk/src/php-5.2.0/ext/sockets/
sockets.php 2 $module = 'sockets'; variable
3 $function = 'confirm_' . $module . '_compiled';
4 if (extension_loaded($module)) {
5 $str = $function($module);
7 $str = "Module $module is not compiled in PHP";
  /webstack/webstack/trunk/src/php-5.2.4/ext/ncurses/
ncurses.php 2 $module = 'ncurses'; variable
3 $function = 'confirm_' . $module . '_compiled';
4 if (extension_loaded($module)) {
5 $str = $function($module);
7 $str = "Module $module is not compiled into PHP";
  /webstack/php-experiment/php-5.2.9RC3/ext/ncurses/
ncurses.php 2 $module = 'ncurses'; variable
3 $function = 'confirm_' . $module . '_compiled';
4 if (extension_loaded($module)) {
5 $str = $function($module);
7 $str = "Module $module is not compiled into PHP";
  /webstack/webstack/branches/CoolStack12Rtm/src/php-5.2.4/ext/skeleton/
skeleton.php 7 $module = 'extname'; variable
8 $functions = get_extension_funcs($module);
14 $function = 'confirm_' . $module . '_compiled';
15 if (extension_loaded($module)) {
16 $str = $function($module);
18 $str = "Module $module is not compiled into PHP";
  /webstack/webstack/trunk/src/php-5.2.0/ext/skeleton/
skeleton.php 7 $module = 'extname'; variable
8 $functions = get_extension_funcs($module);
14 $function = 'confirm_' . $module . '_compiled';
15 if (extension_loaded($module)) {
16 $str = $function($module);
18 $str = "Module $module is not compiled into PHP";
  /webstack/webstack/trunk/src/php-5.2.4/ext/skeleton/
skeleton.php 7 $module = 'extname'; variable
8 $functions = get_extension_funcs($module);
14 $function = 'confirm_' . $module . '_compiled';
15 if (extension_loaded($module)) {
16 $str = $function($module);
18 $str = "Module $module is not compiled into PHP";
  /webstack/php-experiment/php-5.2.9RC3/ext/skeleton/
skeleton.php 7 $module = 'extname'; variable
8 $functions = get_extension_funcs($module);
14 $function = 'confirm_' . $module . '_compiled';
15 if (extension_loaded($module)) {
16 $str = $function($module);
18 $str = "Module $module is not compiled into PHP";
  /webstack/webstack/branches/CoolStack12Rtm/src/libxml2-2.6.27/
testModule.c 36 xmlModulePtr module = NULL; local
39 /* build the module filename, and confirm the module exists */
45 module = xmlModuleOpen((const char*)filename, 0);
46 if (module)
48 if (xmlModuleSymbol(module, "hello_world", (void **) &hello_world)) {
59 xmlModuleClose(module);
70 printf("%s : Module support not compiled in\n", argv[0]);
xmlmodule.c 2 * xmlmodule.c : basic API for dynamic module loading added 2.6.17
33 * module memory error handler *
44 xmlModuleErrMemory(xmlModulePtr module, const char *extra)
48 if (module != NULL) {
49 name = (const char *) module->name;
60 * @name: the module name
63 * Opens a module/shared library given its name or path
66 * Returns a handle for the module or NULL in case of error
71 xmlModulePtr module; local
73 module = (xmlModulePtr) xmlMalloc(sizeof(xmlModule))
    [all...]
  /webstack/webstack/trunk/src/libxml2-2.6.27/
testModule.c 36 xmlModulePtr module = NULL; local
39 /* build the module filename, and confirm the module exists */
45 module = xmlModuleOpen((const char*)filename, 0);
46 if (module)
48 if (xmlModuleSymbol(module, "hello_world", (void **) &hello_world)) {
59 xmlModuleClose(module);
70 printf("%s : Module support not compiled in\n", argv[0]);
xmlmodule.c 2 * xmlmodule.c : basic API for dynamic module loading added 2.6.17
33 * module memory error handler *
44 xmlModuleErrMemory(xmlModulePtr module, const char *extra)
48 if (module != NULL) {
49 name = (const char *) module->name;
60 * @name: the module name
63 * Opens a module/shared library given its name or path
66 * Returns a handle for the module or NULL in case of error
71 xmlModulePtr module; local
73 module = (xmlModulePtr) xmlMalloc(sizeof(xmlModule))
    [all...]
  /webstack/webstack/branches/CoolStack12Rtm/src/perl-5.8.8/os2/OS2/REXX/DLL/
DLL.pm 51 sub module { subroutine
52 confess 'Usage: OS2::DLL->module( <file> [<dirs>] )' unless @_ >= 2;
140 When you use this module, the REXX variable pool is not available.
142 See documentation of L<OS2::REXX> module if you need the variable pool.
147 $emx_dll = OS2::DLL->module('emx');
156 $dll = OS2::DLL->module( NAME [, WHERE] );
158 Loads an OS/2 module NAME, looking in directories WHERE (adding the
168 Same as L<C<module>|Create a DLL handle>, but in addition to WHERE, looks
213 =head1 Inspecting the module
217 =item $module->handl
    [all...]
  /webstack/webstack/trunk/src/perl-5.8.8/os2/OS2/REXX/DLL/
DLL.pm 51 sub module { subroutine
52 confess 'Usage: OS2::DLL->module( <file> [<dirs>] )' unless @_ >= 2;
140 When you use this module, the REXX variable pool is not available.
142 See documentation of L<OS2::REXX> module if you need the variable pool.
147 $emx_dll = OS2::DLL->module('emx');
156 $dll = OS2::DLL->module( NAME [, WHERE] );
158 Loads an OS/2 module NAME, looking in directories WHERE (adding the
168 Same as L<C<module>|Create a DLL handle>, but in addition to WHERE, looks
213 =head1 Inspecting the module
217 =item $module->handl
    [all...]
  /webstack/webserver/src/tools/httptest/
log.cpp 82 char *module = logLevelStr[level]; local
87 fprintf(stdout, "%s: (%s) %s\n", module, threadName, buf);
89 fprintf(stdout, "%s: %s\n", module, buf);
  /webstack/webstack/branches/CoolStack12Rtm/src/freetype-2.2.1/src/cid/
cidobjs.c 68 FT_Module module; local
71 module = FT_Get_Module( slot->face->driver->root.library,
73 if ( module )
78 funcs = pshinter->get_t1_funcs( module );
99 FT_Module module; local
102 module = FT_Get_Module( size->root.face->driver->root.library,
104 return ( module && pshinter && pshinter->get_globals_funcs )
105 ? pshinter->get_globals_funcs( module )
  /webstack/webstack/branches/CoolStack12Rtm/src/freetype-2.2.1/src/type1/
t1objs.c 62 FT_Module module; local
65 module = FT_Get_Module( size->root.face->driver->root.library,
67 return ( module && pshinter && pshinter->get_globals_funcs )
68 ? pshinter->get_globals_funcs( module )
157 FT_Module module; local
160 module = FT_Get_Module( slot->root.face->driver->root.library, "pshinter" );
161 if (module)
165 funcs = pshinter->get_t1_funcs( module );
  /webstack/webstack/branches/CoolStack12Rtm/src/perl-5.8.8/ext-add/Convert-ASN1-0.20/
parser.y 97 | module
100 module : WORD ASSIGN aitem label
104 | module WORD ASSIGN aitem
  /webstack/webstack/trunk/src/freetype-2.2.1/src/cid/
cidobjs.c 68 FT_Module module; local
71 module = FT_Get_Module( slot->face->driver->root.library,
73 if ( module )
78 funcs = pshinter->get_t1_funcs( module );
99 FT_Module module; local
102 module = FT_Get_Module( size->root.face->driver->root.library,
104 return ( module && pshinter && pshinter->get_globals_funcs )
105 ? pshinter->get_globals_funcs( module )
  /webstack/webstack/trunk/src/freetype-2.2.1/src/type1/
t1objs.c 62 FT_Module module; local
65 module = FT_Get_Module( size->root.face->driver->root.library,
67 return ( module && pshinter && pshinter->get_globals_funcs )
68 ? pshinter->get_globals_funcs( module )
157 FT_Module module; local
160 module = FT_Get_Module( slot->root.face->driver->root.library, "pshinter" );
161 if (module)
165 funcs = pshinter->get_t1_funcs( module );

Completed in 360 milliseconds

1 2 3 4 5