mount             230 lib/pengine/bundle.c             pe__bundle_mount_t *mount = pIter->data;
mount             232 lib/pengine/bundle.c             if (pcmk_is_set(mount->flags, pe__bundle_mount_subdir)) {
mount             234 lib/pengine/bundle.c                     "%s/%s-%d", mount->source, data->prefix, replica->offset);
mount             240 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " -v %s:%s", source, mount->target);
mount             244 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " -v %s:%s", mount->source, mount->target);
mount             246 lib/pengine/bundle.c             if(mount->options) {
mount             247 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, ":%s", mount->options);
mount             396 lib/pengine/bundle.c             pe__bundle_mount_t *mount = pIter->data;
mount             398 lib/pengine/bundle.c             if (pcmk_is_set(mount->flags, pe__bundle_mount_subdir)) {
mount             400 lib/pengine/bundle.c                     "%s/%s-%d", mount->source, data->prefix, replica->offset);
mount             406 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " -v %s:%s", source, mount->target);
mount             410 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " -v %s:%s", mount->source, mount->target);
mount             412 lib/pengine/bundle.c             if(mount->options) {
mount             413 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, ":%s", mount->options);
mount             560 lib/pengine/bundle.c             pe__bundle_mount_t *mount = pIter->data;
mount             562 lib/pengine/bundle.c             if (pcmk_is_set(mount->flags, pe__bundle_mount_subdir)) {
mount             564 lib/pengine/bundle.c                     "%s/%s-%d", mount->source, data->prefix, replica->offset);
mount             571 lib/pengine/bundle.c                 if(mount->options) {
mount             572 lib/pengine/bundle.c                     offset += snprintf(buffer+offset, max-offset, ",%s", mount->options);
mount             574 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " --mount volume=vol%d,target=%s", volid, mount->target);
mount             578 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " --volume vol%d,kind=host,source=%s", volid, mount->source);
mount             579 lib/pengine/bundle.c                 if(mount->options) {
mount             580 lib/pengine/bundle.c                     offset += snprintf(buffer+offset, max-offset, ",%s", mount->options);
mount             582 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " --mount volume=vol%d,target=%s", volid, mount->target);
mount             893 lib/pengine/bundle.c     pe__bundle_mount_t *mount = calloc(1, sizeof(pe__bundle_mount_t));
mount             895 lib/pengine/bundle.c     mount->source = strdup(source);
mount             896 lib/pengine/bundle.c     mount->target = strdup(target);
mount             898 lib/pengine/bundle.c         mount->options = strdup(options);
mount             900 lib/pengine/bundle.c     mount->flags = flags;
mount             901 lib/pengine/bundle.c     bundle_data->mounts = g_list_append(bundle_data->mounts, mount);
mount             905 lib/pengine/bundle.c mount_free(pe__bundle_mount_t *mount)
mount             907 lib/pengine/bundle.c     free(mount->source);
mount             908 lib/pengine/bundle.c     free(mount->target);
mount             909 lib/pengine/bundle.c     free(mount->options);
mount             910 lib/pengine/bundle.c     free(mount);