Searched refs:buildroot_dir (Results 1 – 3 of 3) sorted by relevance
230 if (client->buildroot_dir != NULL) in pkgconf_client_deinit()231 free(client->buildroot_dir); in pkgconf_client_deinit()326 return client->buildroot_dir; in pkgconf_client_get_buildroot_dir()344 pkgconf_client_set_buildroot_dir(pkgconf_client_t *client, const char *buildroot_dir) in pkgconf_client_set_buildroot_dir() argument346 if (client->buildroot_dir != NULL) in pkgconf_client_set_buildroot_dir()347 free(client->buildroot_dir); in pkgconf_client_set_buildroot_dir()349 client->buildroot_dir = buildroot_dir != NULL ? strdup(buildroot_dir) : NULL; in pkgconf_client_set_buildroot_dir()351 …ONF_TRACE(client, "set buildroot_dir to: %s", client->buildroot_dir != NULL ? client->buildroot_di… in pkgconf_client_set_buildroot_dir()353 …f_tuple_add_global(client, "pc_top_builddir", client->buildroot_dir != NULL ? client->buildroot_di… in pkgconf_client_set_buildroot_dir()
287 char *buildroot_dir; member374 …ONF_API void pkgconf_client_set_buildroot_dir(pkgconf_client_t *client, const char *buildroot_dir);
82 …nction:: void pkgconf_client_set_buildroot_dir(pkgconf_client_t *client, const char *buildroot_dir)90 :param char* buildroot_dir: The buildroot directory to set or NULL to unset.