mount             232 lib/pengine/bundle.c             pe__bundle_mount_t *mount = pIter->data;
mount             234 lib/pengine/bundle.c             if (pcmk_is_set(mount->flags, pe__bundle_mount_subdir)) {
mount             236 lib/pengine/bundle.c                     "%s/%s-%d", mount->source, data->prefix, replica->offset);
mount             242 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " -v %s:%s", source, mount->target);
mount             246 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " -v %s:%s", mount->source, mount->target);
mount             248 lib/pengine/bundle.c             if(mount->options) {
mount             249 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, ":%s", mount->options);
mount             398 lib/pengine/bundle.c             pe__bundle_mount_t *mount = pIter->data;
mount             400 lib/pengine/bundle.c             if (pcmk_is_set(mount->flags, pe__bundle_mount_subdir)) {
mount             402 lib/pengine/bundle.c                     "%s/%s-%d", mount->source, data->prefix, replica->offset);
mount             408 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " -v %s:%s", source, mount->target);
mount             412 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " -v %s:%s", mount->source, mount->target);
mount             414 lib/pengine/bundle.c             if(mount->options) {
mount             415 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, ":%s", mount->options);
mount             562 lib/pengine/bundle.c             pe__bundle_mount_t *mount = pIter->data;
mount             564 lib/pengine/bundle.c             if (pcmk_is_set(mount->flags, pe__bundle_mount_subdir)) {
mount             566 lib/pengine/bundle.c                     "%s/%s-%d", mount->source, data->prefix, replica->offset);
mount             573 lib/pengine/bundle.c                 if(mount->options) {
mount             574 lib/pengine/bundle.c                     offset += snprintf(buffer+offset, max-offset, ",%s", mount->options);
mount             576 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " --mount volume=vol%d,target=%s", volid, mount->target);
mount             580 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " --volume vol%d,kind=host,source=%s", volid, mount->source);
mount             581 lib/pengine/bundle.c                 if(mount->options) {
mount             582 lib/pengine/bundle.c                     offset += snprintf(buffer+offset, max-offset, ",%s", mount->options);
mount             584 lib/pengine/bundle.c                 offset += snprintf(buffer+offset, max-offset, " --mount volume=vol%d,target=%s", volid, mount->target);
mount             888 lib/pengine/bundle.c     pe__bundle_mount_t *mount = calloc(1, sizeof(pe__bundle_mount_t));
mount             890 lib/pengine/bundle.c     CRM_ASSERT(mount != NULL);
mount             891 lib/pengine/bundle.c     mount->source = strdup(source);
mount             892 lib/pengine/bundle.c     mount->target = strdup(target);
mount             893 lib/pengine/bundle.c     pcmk__str_update(&mount->options, options);
mount             894 lib/pengine/bundle.c     mount->flags = flags;
mount             895 lib/pengine/bundle.c     bundle_data->mounts = g_list_append(bundle_data->mounts, mount);
mount             899 lib/pengine/bundle.c mount_free(pe__bundle_mount_t *mount)
mount             901 lib/pengine/bundle.c     free(mount->source);
mount             902 lib/pengine/bundle.c     free(mount->target);
mount             903 lib/pengine/bundle.c     free(mount->options);
mount             904 lib/pengine/bundle.c     free(mount);