Lines Matching defs:section
214 ret = dgettext(TEXT_DOMAIN, "protocol requires a section");
220 ret = dgettext(TEXT_DOMAIN, "section not found");
3188 * Create a new section with the specified name and extra data.
3196 node = xmlNewNode(NULL, (xmlChar *)"section");
3215 * sa_create_property(section, name, value)
3429 * Get the specified protocol specific section. These are global to
3434 sa_get_protocol_section(sa_protocol_properties_t propset, char *section)
3449 if (xmlStrcmp(node->name, (xmlChar *)"section") == 0) {
3450 if (section == NULL)
3454 xmlStrcasecmp(value, (xmlChar *)section) == 0) {
3467 if (node != NULL && xmlStrcmp(node->name, (xmlChar *)"section") != 0) {
3480 * Get the next protocol specific section in the list.
3499 if (xmlStrcmp(node->name, (xmlChar *)"section") == 0) {
3607 sa_set_protocol_property(sa_property_t prop, char *section, char *value)
3617 if (section != NULL)
3618 set_node_attr((xmlNodePtr)prop, "section",
3619 section);