Searched refs:name (Results 26 - 46 of 46) sorted by relevance

12

/broadcom-cfe-1.4.2/cfe/main/
H A Dnvram_subr.c26 * 2) No right is granted to use any trade name, trademark, or
28 * name may not be used to endorse or promote products derived
259 * cfe_set_envdevice(name)
261 * Set the environment NVRAM device name
264 * name - name of device to use for NVRAM
271 int cfe_set_envdevice(char *name) argument
275 nvram_devname = strdup(name);
H A Dcfe_fatfs.c30 * 2) No right is granted to use any trade name, trademark, or
32 * name may not be used to endorse or promote products derived
623 * fat_checksumname(name)
625 * Calculate the "long filename" checksum for a given short name.
626 * All LFN directory entries associated with the short name are
627 * given the same checksum byte, to help keep the long name
631 * name - pointer to 32-byte directory entry
637 static uint8_t fat_checksumname(uint8_t *name) argument
647 sum += name[idx];
657 uint8_t name[3 local
965 fat_getshortname(uint8_t *direntry,char *name) argument
1137 fat_scandir(fatfs_t *fat,fatchain_t *chain, char *name,uint8_t *direntry) argument
1225 fat_findfile(fatfs_t *fat,char *name,uint8_t *direntry) argument
1340 fat_init(fatfs_t *fat,char *name,int part) argument
1583 fatfs_fileop_open(void **ref,void *fsctx,char *name,int mode) argument
[all...]
H A Dcfe_console.c27 * 2) No right is granted to use any trade name, trademark, or
29 * name may not be used to endorse or promote products derived
178 * console_open(name)
183 * name - name of device
190 int console_open(char *name) argument
197 console_handle = cfe_open(name);
213 console_handle = cfe_open(name);
216 console_name = name;
483 * cfe_set_console(name)
500 cfe_set_console(char *name) argument
[all...]
H A Dcfe_filesys.c26 * 2) No right is granted to use any trade name, trademark, or
28 * name may not be used to endorse or promote products derived
98 * cfe_findfilesys(name)
103 * name - name of filesys to locate
109 const fileio_dispatch_t *cfe_findfilesys(const char *name) argument
116 if (strcmp((*disp)->method,name) == 0) return *disp;
124 * fs_init(name,fsctx,device)
129 * name - name o
[all...]
H A Dcfe.mk346 # Make a define for the board name
/broadcom-cfe-1.4.2/cfe/arch/mips/board/bcm95836cpci/src/
H A Dbcm95836cpci_devs.c26 * 2) No right is granted to use any trade name, trademark, or
28 * name may not be used to endorse or promote products derived
93 const char *name; member in struct:initenv_s
154 of another environment variable if the name starts
155 with a dollar sign. If that name is not defined
158 while (ini->name) {
160 txt = (char *)nvram_get(ini->name);
171 if (!env_getenv(ini->name)) {
172 env_setenv(ini->name,txt,ENV_FLG_BUILTIN);
/broadcom-cfe-1.4.2/cfe/hosttools/
H A Dmemconfig1480.c29 * 2) No right is granted to use any trade name, trademark, or
31 * name may not be used to endorse or promote products derived
92 char *name; member in struct:encvalue_s
97 char *name; member in struct:spdbyte_s
244 while (ev->name) {
245 if (ev->val == val) return ev->name;
484 printf("Fields must be specified as 'name=value'\n");
490 while (sf->name) {
491 if (strcmp(sf->name,txt) == 0) break;
495 if (sf->name
[all...]
H A Dmakereg.c30 * 2) No right is granted to use any trade name, trademark, or
32 * name may not be used to endorse or promote products derived
83 char *name; member in struct:ConstInfo
201 static void addconst(char *name,unsigned int val) argument
207 constants[constcnt].name = strdup(name);
423 fprintf(str,"#ifndef %s\n",constants[0].name);
425 fprintf(str,"#define %s 0x%08X\n",constants[idx].name,
/broadcom-cfe-1.4.2/cfe/pci/
H A Dpci_subr.c18 * 4. The name of the author may not be used to endorse or promote products
64 char *name; member in struct:pci_class
288 while (kdp->vendorname != PCI_STRING_NULL) { /* all have vendor name */
332 while (kdp->vendorname != PCI_STRING_NULL) { /* all have vendor name */
350 while (classp->name != NULL) {
356 subclassp = (classp->name != NULL) ? classp->subclasses : NULL;
357 while (subclassp && subclassp->name != NULL) {
372 if (classp->name == NULL)
376 if (subclassp == NULL || subclassp->name == NULL)
378 classp->name, subclas
437 pci_conf_print_bar( pcitag_t tag, const pcireg_t *regs, int reg, const char *name, int sizebar, int onlyimpl) argument
[all...]
/broadcom-cfe-1.4.2/cfe/zlib/
H A Dzutil.h101 # define F_OPEN(name, mode) \
102 fopen((name), (mode), "mbc=60", "ctx=stm", "rfm=fix", "mrs=512")
148 # define F_OPEN(name, mode) fopen((name), (mode))
H A Dgzio.c36 #define ORIG_NAME 0x08 /* bit 3 set: original file name present */
49 char *path; /* path name for debugging only */
67 or path name (if fd == -1).
198 char name[20]; local
201 sprintf(name, "<fd:%d>", fd); /* for debugging */
203 return gz_open (name, mode, fd);
300 if ((flags & ORIG_NAME) != 0) { /* skip the original file name */
/broadcom-cfe-1.4.2/cfe/include/
H A Dcfe_console.h26 * 2) No right is granted to use any trade name, trademark, or
28 * name may not be used to endorse or promote products derived
79 int console_open(char *name);
/broadcom-cfe-1.4.2/cfe/x86emu/
H A Dops2.c15 * supporting documentation, and that the name of the authors not be used
75 char *name = 0; local
82 name = "JO\t";
86 name = "JNO\t";
90 name = "JB\t";
94 name = "JNB\t";
98 name = "JZ\t";
102 name = "JNZ\t";
106 name = "JBE\t";
110 name
168 char *name = 0; local
[all...]
/broadcom-cfe-1.4.2/cfe/arch/x86/common/src/
H A Dtools.mk51 LIBGCC = $(shell $(GCC) -print-libgcc-file-name)
/broadcom-cfe-1.4.2/cfe/ui/
H A Dui_spdcmds.c26 * 2) No right is granted to use any trade name, trademark, or
28 * name may not be used to endorse or promote products derived
83 char *name; member in struct:spdbyte_s
282 while (s->name) {
304 printf("%8s = %15s | %30s\n",s->name,buf,s->description);
H A Dui_test_ether.c26 * 2) No right is granted to use any trade name, trademark, or
28 * name may not be used to endorse or promote products derived
77 "test ether device-name",
87 static int ui_ifconfig_lookup(char *name,char *val,const netparam_t *list) argument
H A Dui_netcmds.c26 * 2) No right is granted to use any trade name, trademark, or
28 * name may not be used to endorse or promote products derived
81 static int ui_ifconfig_lookup(char *name,char *val,const netparam_t *list) ;
117 "-dns=*;Specifies the name server address for the interface|"
118 "-domain=*;Specifies the default domain for name service queries|"
306 static int ui_ifconfig_lookup(char *name,char *val,const netparam_t *list) argument
385 res = ui_ifconfig_getsw(cmd,"-dns","name server IP address",nameserver);
418 * If the network is running and the device name is
/broadcom-cfe-1.4.2/cfe/arch/mips/chipset/sibyte/src/
H A Dui_hspcmds.c28 * 2) No right is granted to use any trade name, trademark, or
30 * name may not be used to endorse or promote products derived
701 while (fields->name) {
712 strcpy(fieldname,fields->name);
727 p += sprintf(p,"%s=%u ",fields->name,
/broadcom-cfe-1.4.2/cfe/arch/ppc/common/src/
H A Dtools.mk55 LIBGCC = $(shell $(GCC) -print-libgcc-file-name)
/broadcom-cfe-1.4.2/cfe/arch/mips/common/src/
H A Ddisasm.c26 * 2) No right is granted to use any trade name, trademark, or
28 * name may not be used to endorse or promote products derived
203 means name points to a byte that is an index into a dereferencing array. */
216 char name[15]; member in struct:__anon12
1702 tmp = &disasm_deref[atoi(&(rec->name[1]))];
1709 return (char *)(get_disasm_field(inst)->name);
1721 strcpy(instname,(char *) tmp->name);
/broadcom-cfe-1.4.2/cfe/dev/
H A Ddev_newflash.c27 * 2) No right is granted to use any trade name, trademark, or
29 * name may not be used to endorse or promote products derived
1083 char name[32]; local
1094 sprintf(name,"%d",idx);
1095 nptr = name;

Completed in 104 milliseconds

12