remainder          31 daemons/schedulerd/pacemaker-schedulerd.c     gchar **remainder;
remainder          70 daemons/schedulerd/pacemaker-schedulerd.c         { G_OPTION_REMAINING, 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING_ARRAY, &options.remainder,
remainder         113 daemons/schedulerd/pacemaker-schedulerd.c     if (options.remainder) {
remainder         114 daemons/schedulerd/pacemaker-schedulerd.c         if (g_strv_length(options.remainder) == 1 &&
remainder         115 daemons/schedulerd/pacemaker-schedulerd.c             pcmk__str_eq("metadata", options.remainder[0], pcmk__str_casei)) {
remainder         173 daemons/schedulerd/pacemaker-schedulerd.c     g_strfreev(options.remainder);
remainder         479 lib/common/patchset.c     char *remainder;
remainder         493 lib/common/patchset.c     remainder = pcmk__assert_alloc(key_len, sizeof(char));
remainder         500 lib/common/patchset.c         rc = sscanf(current, "/%[^/]%s", section, remainder);
remainder         527 lib/common/patchset.c             current = remainder;
remainder         541 lib/common/patchset.c     free(remainder);
remainder         907 lib/common/strings.c     char *remainder = NULL;
remainder         928 lib/common/strings.c         int rc = scan_ll(srcstring+1, end, PCMK__PARSE_INT_DEFAULT, &remainder);
remainder         930 lib/common/strings.c         if ((rc == pcmk_rc_ok) && (*remainder != '\0')) {
remainder         936 lib/common/strings.c     rc = scan_ll(srcstring, start, PCMK__PARSE_INT_DEFAULT, &remainder);
remainder         941 lib/common/strings.c     if (*remainder && *remainder == '-') {
remainder         942 lib/common/strings.c         if (*(remainder+1)) {
remainder         944 lib/common/strings.c             int rc = scan_ll(remainder+1, end, PCMK__PARSE_INT_DEFAULT,
remainder         953 lib/common/strings.c     } else if (*remainder && *remainder != '-') {
remainder         165 tools/crm_resource.c     gchar **remainder;            // Positional arguments as given
remainder        1996 tools/crm_resource.c         { G_OPTION_REMAINING, 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING_ARRAY, &options.remainder,
remainder        2111 tools/crm_resource.c     if (options.remainder != NULL) {
remainder        2115 tools/crm_resource.c             guint len = g_strv_length(options.remainder);
remainder        2121 tools/crm_resource.c                                        i + 1, len, options.remainder[i]);
remainder        2129 tools/crm_resource.c         for (gchar **arg = options.remainder; *arg != NULL; arg++) {
remainder        2382 tools/crm_resource.c     g_strfreev(options.remainder);