Home | History | Annotate | Download | only in intl

Lines Matching refs:retval

180   struct loaded_l10nfile *retval;
273 for (retval = *l10nfile_list; retval != NULL; retval = retval->next)
274 if (retval->filename != NULL)
276 int compare = strcmp (retval->filename, abs_filename);
283 retval = NULL;
287 lastp = &retval->next;
290 if (retval != NULL || do_allocate == 0)
293 return retval;
299 retval =
301 malloc (sizeof (*retval)
304 if (retval == NULL)
307 retval->filename = abs_filename;
309 /* We set retval->data to NULL here; it is filled in later.
310 Setting retval->decided to 1 here means that retval does not
313 retval->decided = (dirlist_count > 1
316 retval->data = NULL;
318 retval->next = *lastp;
319 *lastp = retval;
322 /* Recurse to fill the inheritance list of RETVAL.
323 If the DIRLIST is a real list (i.e. DIRLIST_COUNT > 1), the RETVAL
324 entry does not correspond to a real file; retval->filename contains
346 retval->successor[entries++]
353 retval->successor[entries++]
359 retval->successor[entries] = NULL;
361 return retval;
373 char *retval;
386 retval = (char *) malloc ((only_digit ? 3 : 0) + len + 1);
388 if (retval != NULL)
391 wp = stpcpy (retval, "iso");
393 wp = retval;
404 return (const char *) retval;