mount             231 lib/pengine/bundle.c             pe__bundle_mount_t *mount = pIter->data;
mount             233 lib/pengine/bundle.c             if (pcmk_is_set(mount->flags, pe__bundle_mount_subdir)) {
mount             235 lib/pengine/bundle.c                     "%s/%s-%d", mount->source, data->prefix, replica->offset);
mount             241 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " -v %s:%s", source, mount->target);
mount             245 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " -v %s:%s", mount->source, mount->target);
mount             247 lib/pengine/bundle.c             if(mount->options) {
mount             248 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, ":%s", mount->options);
mount             397 lib/pengine/bundle.c             pe__bundle_mount_t *mount = pIter->data;
mount             399 lib/pengine/bundle.c             if (pcmk_is_set(mount->flags, pe__bundle_mount_subdir)) {
mount             401 lib/pengine/bundle.c                     "%s/%s-%d", mount->source, data->prefix, replica->offset);
mount             407 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " -v %s:%s", source, mount->target);
mount             411 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " -v %s:%s", mount->source, mount->target);
mount             413 lib/pengine/bundle.c             if(mount->options) {
mount             414 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, ":%s", mount->options);
mount             561 lib/pengine/bundle.c             pe__bundle_mount_t *mount = pIter->data;
mount             563 lib/pengine/bundle.c             if (pcmk_is_set(mount->flags, pe__bundle_mount_subdir)) {
mount             565 lib/pengine/bundle.c                     "%s/%s-%d", mount->source, data->prefix, replica->offset);
mount             572 lib/pengine/bundle.c                 if(mount->options) {
mount             573 lib/pengine/bundle.c                     offset += snprintf(buffer+offset, max-offset, ",%s", mount->options);
mount             575 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " --mount volume=vol%d,target=%s", volid, mount->target);
mount             579 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " --volume vol%d,kind=host,source=%s", volid, mount->source);
mount             580 lib/pengine/bundle.c                 if(mount->options) {
mount             581 lib/pengine/bundle.c                     offset += snprintf(buffer+offset, max-offset, ",%s", mount->options);
mount             583 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " --mount volume=vol%d,target=%s", volid, mount->target);
mount             894 lib/pengine/bundle.c     pe__bundle_mount_t *mount = calloc(1, sizeof(pe__bundle_mount_t));
mount             896 lib/pengine/bundle.c     mount->source = strdup(source);
mount             897 lib/pengine/bundle.c     mount->target = strdup(target);
mount             899 lib/pengine/bundle.c         mount->options = strdup(options);
mount             901 lib/pengine/bundle.c     mount->flags = flags;
mount             902 lib/pengine/bundle.c     bundle_data->mounts = g_list_append(bundle_data->mounts, mount);
mount             906 lib/pengine/bundle.c mount_free(pe__bundle_mount_t *mount)
mount             908 lib/pengine/bundle.c     free(mount->source);
mount             909 lib/pengine/bundle.c     free(mount->target);
mount             910 lib/pengine/bundle.c     free(mount->options);
mount             911 lib/pengine/bundle.c     free(mount);