Searched refs:method_table (Results 1 – 6 of 6) sorted by relevance
52 desktop_reader_alloc (desktop_reader_class_ty *method_table) in desktop_reader_alloc() argument56 reader = (desktop_reader_ty *) xmalloc (method_table->size); in desktop_reader_alloc()57 reader->methods = method_table; in desktop_reader_alloc()58 if (method_table->constructor) in desktop_reader_alloc()59 method_table->constructor (reader); in desktop_reader_alloc()
47 catalog_reader_alloc (abstract_catalog_reader_class_ty *method_table) in catalog_reader_alloc() argument51 pop = (abstract_catalog_reader_ty *) xmalloc (method_table->size); in catalog_reader_alloc()52 pop->methods = method_table; in catalog_reader_alloc()53 if (method_table->constructor) in catalog_reader_alloc()54 method_table->constructor (pop); in catalog_reader_alloc()
150 catalog_reader_alloc (abstract_catalog_reader_class_ty *method_table);
165 default_catalog_reader_alloc (default_catalog_reader_class_ty *method_table);
445 default_catalog_reader_alloc (default_catalog_reader_class_ty *method_table) in default_catalog_reader_alloc() argument448 (default_catalog_reader_ty *) catalog_reader_alloc (&method_table->super); in default_catalog_reader_alloc()
1316 its_rule_alloc (struct its_rule_class_ty *method_table, xmlNode *node) in its_rule_alloc() argument1320 pop = (struct its_rule_ty *) xcalloc (1, method_table->size); in its_rule_alloc()1321 pop->methods = method_table; in its_rule_alloc()1322 if (method_table->constructor) in its_rule_alloc()1323 method_table->constructor (pop, node); in its_rule_alloc()