Searched defs:full_name (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Additions/linux/lightdm-greeter/liblightdm-gobject-1.5.0/
H A Dlayout.c79 gchar *full_name; local
81 full_name = make_layout_string (data, item->name);
83 layout = g_object_new (LIGHTDM_TYPE_LAYOUT, "name", full_name, "short-description", item->short_description, "description", item->description, NULL);
86 g_free (full_name);
178 gchar *full_name; local
181 full_name = make_layout_string (xkl_config->layouts ? xkl_config->layouts[0] : NULL,
187 if (g_strcmp0 (lightdm_layout_get_name (iter_layout), full_name) == 0)
194 g_free (full_name);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dconfig.c464 char *p, *full_name; local
470 full_name = xmalloc( p - argv[0] + sizeof(preloader) );
471 memcpy( full_name, argv[0], p - argv[0] );
472 memcpy( full_name + (p - argv[0]), preloader, sizeof(preloader) );
478 new_argv[0] = full_name;
479 execv( full_name, new_argv );
481 free( full_name );
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/
H A Dxpidl_typelib.c73 char *full_name; member in struct:__anon17350
92 holder->full_name = calloc(1, strlen(holder->name) +
95 if (holder->full_name) {
96 strcpy(holder->full_name, holder->name_space);
97 strcat(holder->full_name, ".");
98 strcat(holder->full_name, holder->name);
101 holder->full_name = holder->name;
112 if (holder->full_name && holder->full_name != holder->name)
113 free(holder->full_name);
[all...]

Completed in 34 milliseconds