Lines Matching defs:name

42 Whitespace is the collective name given to spaces (blanks), horizontal and
72 name "John Smith"
102 To include another configuration file, write the file name in angle brackets.
234 if a configuration node with the same name exists. This mode is specified with
254 name [=] value [,|;]
257 name [=] {
263 name.name1 [=] value [,|;]
266 name [
273 name.0 [=] value0 [,|;]
274 name.1 [=] value1 [,|;]
304 name. The type and the default value are specified in the compound block:
315 Arguments are referred to with a dollar-sign ($) and the name of the argument:
344 As you see, arguments can be specified in their proper order or by name.
375 <P>A function is defined with the id \c \@func and the function name. All other
420 card. The driver name (the type of the sound card) is passed in the
466 char *name;
612 static char *_snd_config_path(const char *name)
615 char *path = malloc(strlen(root) + strlen(name) + 2);
618 sprintf(path, "%s/%s", root, name);
632 * 1. directly open the file by its name (only if absolute)
633 * 2. search for the file name in in additional configuration directories
768 free(fd->name);
852 fd->name = str;
1968 fd->name = NULL;
2012 SNDERR("%s:%d:%d:%s", fd->name ? fd->name : "_toplevel_", fd->line, fd->column, str);
2018 SNDERR("%s:%d:%d:Unexpected }", fd->name ? fd->name : "", fd->line, fd->column);
2027 free(fd->name);
3917 /** The name of the environment variable containing the files list for #snd_config_update. */
3927 * Functions like #snd_pcm_open (that use a device name from the global
3946 char *name;
4187 char *name, *name2, *remain, *rname = NULL;
4206 if ((err = snd_config_get_ascii(file, &name)) < 0)
4208 name2 = name;
4209 remain = strstr(name, "|||");
4243 free(name);
4402 * loaded once for each sound card. The driver name is available with
4403 * the \c private_string function to customize the file name.
4559 char name[l + 1];
4560 memcpy(name, c, l);
4561 name[l] = 0;
4562 err = snd_user_file(name, &local->finfo[k].name);
4574 if (stat64(lf->name, &st) >= 0) {
4579 SNDERR("Cannot access file %s", lf->name);
4580 free(lf->name);
4593 if (strcmp(lf->name, uf->name) != 0 ||
4634 err = snd_input_stdio_open(&in, local->finfo[k].name, "r");
4639 SNDERR("%s may be old or corrupted: consider to remove or fix it", local->finfo[k].name);
4643 SNDERR("cannot access file %s", local->finfo[k].name);
4764 free(update->finfo[k].name);
5638 * \param[in] fcn Custom function to obtain the referred variable name
5744 * \param[in] name Key suffix, optionally with arguments.
5752 * If \a name contains a colon (:), the rest of the string after the
5769 const char *base, const char *name,
5774 const char *args = strchr(name, ':');
5778 key = alloca(args - name);
5779 memcpy(key, name, args - name - 1);
5780 key[args - name - 1] = '\0';
5782 key = (char *) name;
5829 free(files_info[k].name);