Home
last modified time | relevance | path

Searched refs:CAST_BAD (Results 1 – 8 of 8) sorted by relevance

/dports/audio/lash/lash-0.5.4/lashd/
H A Dclient.c221 if (strcmp(CAST_BAD(xmlnode->name), "class") == 0) { in client_parse_xml()
223 client_set_class(client, CAST_BAD content); in client_parse_xml()
225 } else if (strcmp(CAST_BAD(xmlnode->name), "id") == 0) { in client_parse_xml()
227 uuid_parse(CAST_BAD content, client->id); in client_parse_xml()
229 } else if (strcmp(CAST_BAD(xmlnode->name), "flags") == 0) { in client_parse_xml()
231 client->flags = strtoul(CAST_BAD content, NULL, 10); in client_parse_xml()
235 client_set_working_dir(client, CAST_BAD content); in client_parse_xml()
240 if (strcmp(CAST_BAD argnode->name, "arg") == 0) { in client_parse_xml()
254 lash_strdup(CAST_BAD content); in client_parse_xml()
261 if (strcmp(CAST_BAD argnode->name, "jack_patch") == 0) { in client_parse_xml()
[all …]
H A Dalsa_patch.c404 if (strcmp(CAST_BAD(xmlnode->name), "src_client") == 0) { in alsa_patch_parse_xml()
407 addr.client = strtoul(CAST_BAD content, NULL, 10); in alsa_patch_parse_xml()
413 uuid_parse(CAST_BAD content, patch->src_id); in alsa_patch_parse_xml()
418 addr.port = strtoul(CAST_BAD content, NULL, 10); in alsa_patch_parse_xml()
425 addr.client = strtoul(CAST_BAD content, NULL, 10); in alsa_patch_parse_xml()
431 uuid_parse(CAST_BAD content, patch->dest_id); in alsa_patch_parse_xml()
436 addr.port = strtoul(CAST_BAD content, NULL, 10); in alsa_patch_parse_xml()
443 strtoul(CAST_BAD content, NULL, in alsa_patch_parse_xml()
449 strtoul(CAST_BAD content, in alsa_patch_parse_xml()
455 strtoul(CAST_BAD content, in alsa_patch_parse_xml()
[all …]
H A Djack_patch.c327 if (strcmp(CAST_BAD(xmlnode->name), "src_client") == 0) { in jack_patch_parse_xml()
329 jack_patch_set_src_client(patch, CAST_BAD content); in jack_patch_parse_xml()
331 } else if (strcmp(CAST_BAD(xmlnode->name), "src_client_id") == 0) { in jack_patch_parse_xml()
333 uuid_parse(CAST_BAD content, patch->src_client_id); in jack_patch_parse_xml()
335 } else if (strcmp(CAST_BAD(xmlnode->name), "src_port") == 0) { in jack_patch_parse_xml()
337 jack_patch_set_src_port(patch, CAST_BAD content); in jack_patch_parse_xml()
339 } else if (strcmp(CAST_BAD(xmlnode->name), "dest_client") == 0) { in jack_patch_parse_xml()
341 jack_patch_set_dest_client(patch, CAST_BAD content); in jack_patch_parse_xml()
345 uuid_parse(CAST_BAD content, patch->dest_client_id); in jack_patch_parse_xml()
347 } else if (strcmp(CAST_BAD(xmlnode->name), "dest_port") == 0) { in jack_patch_parse_xml()
[all …]
H A Dclient.h32 #define CAST_BAD (char *) macro
H A Dproject.c776 && strcmp(CAST_BAD projectnode->name, "lash_project") == 0) in project_new_from_xml()
787 if (strcmp(CAST_BAD xmlnode->name, "version") == 0) { in project_new_from_xml()
789 } else if (strcmp(CAST_BAD xmlnode->name, "name") == 0) { in project_new_from_xml()
791 project_set_name(project, CAST_BAD content); in project_new_from_xml()
793 } else if (strcmp(CAST_BAD xmlnode->name, "client") == 0) { in project_new_from_xml()
/dports/devel/glade/glade-3.22.1/gladeui/
H A Dglade-xml-utils.h14 #define CAST_BAD (gchar *) macro
H A Dglade-xml-utils.c85 ret = g_strdup (CAST_BAD (string)); in claim_string()
865 return CAST_BAD (node->name); in glade_xml_node_get_name()
/dports/devel/glade/glade-3.22.1/
H A DChangeLog59502 Added CAST_BAD macro (BAD_CAST opposite).
59505 * src/glade-parse.h: Added CAST_BAD macro (BAD_CAST opposite).