mount             499 lib/pengine/bundle.c         pe__bundle_mount_t *mount = (pe__bundle_mount_t *) iter->data;
mount             502 lib/pengine/bundle.c         if (pcmk_is_set(mount->flags, pe__bundle_mount_subdir)) {
mount             503 lib/pengine/bundle.c             source = crm_strdup_printf("%s/%s-%d", mount->source, data->prefix,
mount             512 lib/pengine/bundle.c                                " -v ", pcmk__s(source, mount->source),
mount             513 lib/pengine/bundle.c                                ":", mount->target, NULL);
mount             515 lib/pengine/bundle.c                 if (mount->options != NULL) {
mount             516 lib/pengine/bundle.c                     pcmk__g_strcat(buffer, ":", mount->options, NULL);
mount             524 lib/pengine/bundle.c                                        volid, pcmk__s(source, mount->source),
mount             525 lib/pengine/bundle.c                                        (mount->options != NULL)? "," : "",
mount             526 lib/pengine/bundle.c                                        pcmk__s(mount->options, ""),
mount             527 lib/pengine/bundle.c                                        volid, mount->target);
mount             865 lib/pengine/bundle.c     pe__bundle_mount_t *mount = calloc(1, sizeof(pe__bundle_mount_t));
mount             867 lib/pengine/bundle.c     CRM_ASSERT(mount != NULL);
mount             868 lib/pengine/bundle.c     mount->source = strdup(source);
mount             869 lib/pengine/bundle.c     mount->target = strdup(target);
mount             870 lib/pengine/bundle.c     pcmk__str_update(&mount->options, options);
mount             871 lib/pengine/bundle.c     mount->flags = flags;
mount             872 lib/pengine/bundle.c     bundle_data->mounts = g_list_append(bundle_data->mounts, mount);
mount             876 lib/pengine/bundle.c mount_free(pe__bundle_mount_t *mount)
mount             878 lib/pengine/bundle.c     free(mount->source);
mount             879 lib/pengine/bundle.c     free(mount->target);
mount             880 lib/pengine/bundle.c     free(mount->options);
mount             881 lib/pengine/bundle.c     free(mount);