Searched refs:location (Results 1 - 25 of 361) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/scripts/perl/
H A Dsmbaddprinter.pl28 my $location=shift(@argv); # location -> used for CUPS device URI
29 my $win9x=shift(@argv); # win9x location
31 #check for location syntax
33 if ($location !~ m#:/#){
35 $location = "lpd://".$location;
40 system("/usr/sbin/lpadmin -p $shname -D \"$drivername\" -E -v $location");
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/prebuilt/WW/www/
H A DchangeUrl.js4 if(window.location.href.indexOf("www.routerlogin.com") > 0)
6 else if (window.location.href.indexOf("www.routerlogin.net") > 0)
8 else if(window.location.href.indexOf("routerlogin.com") > 0)
10 else if (window.location.href.indexOf("routerlogin.net") > 0)
20 window.location.href = "http://www.routerlogin.net" + "/" + file_name;
22 window.location.href = "http://routerlogin.com" + "/" + file_name;
24 window.location.href = "http://routerlogin.net" + "/" + file_name;
26 window.location.href = "http://www.routerlogin.com" + "/" + file_name;
28 window.location.href = "http://routerlogin.net" + "/" + file_name;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh64/kernel/
H A Dmodule.c66 uint32_t *location; local
74 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
81 align = (int)location & 3;
95 DEBUGP("R_SH_DIR32 @%08lx = %08lx\n", (unsigned long) location, (unsigned long) relocation);
96 *location += relocation;
99 DEBUGP("R_SH_REL32 @%08lx = %08lx\n", (unsigned long) location, (unsigned long) relocation);
100 relocation -= (Elf32_Addr) location;
101 *location += relocation;
104 DEBUGP("R_SH_IMM_LOW16 @%08lx = %08lx\n", (unsigned long) location, (unsigned long) relocation);
105 *location
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/kernel/
H A Dmodule.c78 static int apply_r_mips_none(struct module *me, u32 *location, Elf_Addr v) argument
83 static int apply_r_mips_32_rel(struct module *me, u32 *location, Elf_Addr v) argument
85 *location += v;
90 static int apply_r_mips_32_rela(struct module *me, u32 *location, Elf_Addr v) argument
92 *location = v;
97 static int apply_r_mips_26_rel(struct module *me, u32 *location, Elf_Addr v) argument
104 if ((v & 0xf0000000) != (((unsigned long)location + 4) & 0xf0000000)) {
111 *location = (*location & ~0x03ffffff) |
112 ((*location
117 apply_r_mips_26_rela(struct module *me, u32 *location, Elf_Addr v) argument
136 apply_r_mips_hi16_rel(struct module *me, u32 *location, Elf_Addr v) argument
157 apply_r_mips_hi16_rela(struct module *me, u32 *location, Elf_Addr v) argument
165 apply_r_mips_lo16_rel(struct module *me, u32 *location, Elf_Addr v) argument
229 apply_r_mips_lo16_rela(struct module *me, u32 *location, Elf_Addr v) argument
236 apply_r_mips_64_rela(struct module *me, u32 *location, Elf_Addr v) argument
243 apply_r_mips_higher_rela(struct module *me, u32 *location, Elf_Addr v) argument
252 apply_r_mips_highest_rela(struct module *me, u32 *location, Elf_Addr v) argument
288 u32 *location; local
328 u32 *location; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Dmodule_32.c155 static uint32_t do_plt_call(void *location, argument
162 DEBUGP("Doing plt for call to 0x%x at 0x%x\n", val, (unsigned int)location);
164 if (location >= mod->module_core
165 && location < mod->module_core + mod->core_size)
195 uint32_t *location; local
202 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
214 *(uint32_t *)location = value;
219 *(uint16_t *)location = value;
224 *(uint16_t *)location = (value >> 16);
232 *(uint16_t *)location
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68knommu/kernel/
H A Dmodule.c42 uint32_t *location; local
48 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
57 /* We add the value into the location given */
58 *location += sym->st_value;
62 *location += sym->st_value - (uint32_t)location;
82 uint32_t *location; local
88 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
97 /* We add the value into the location given */
98 *location
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m32r/kernel/
H A Dmodule.c104 uint32_t *location; local
115 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
122 align = (int)location & 3;
126 COPY_UNALIGNED_WORD (*location, value, align);
128 COPY_UNALIGNED_WORD (value, *location, align);
131 COPY_UNALIGNED_WORD (*location, value, align);
135 COPY_UNALIGNED_WORD (value, *location, align);
138 COPY_UNALIGNED_WORD (*location, value, align);
143 COPY_UNALIGNED_WORD (value, *location, align);
146 hlocation = (unsigned short *)location;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/kernel/
H A Dmodule.c106 u8 *location; local
113 location = (u8 *)sechdrs[sechdrs[relsec].sh_info].sh_addr
115 loc32 = (u32 *) location;
117 BUG_ON(((u64)location >> (u64)32) != (u64)0);
127 location[0] = v >> 56;
128 location[1] = v >> 48;
129 location[2] = v >> 40;
130 location[3] = v >> 32;
131 location[4] = v >> 24;
132 location[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/kernel/
H A Dmodule.c165 void *base, *location; local
187 location = base + rela[i].r_offset;
199 ((u32 *)location)[0] = value;
200 ((u32 *)location)[1] = value >> 32;
206 *(u32 *)location = value;
213 *(u16 *)location = lo;
219 value = gp - (u64)location;
224 *(u16 *)location = hi >> 16;
225 *(u16 *)(location + rela[i].r_addend) = lo;
239 value -= (u64)location
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/kernel/
H A Dmodule.c82 uint32_t *location; local
90 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
97 align = (int)location & 3;
101 COPY_UNALIGNED_WORD (*location, value, align);
103 COPY_UNALIGNED_WORD (value, *location, align);
106 relocation = (relocation - (Elf32_Addr) location);
107 COPY_UNALIGNED_WORD (*location, value, align);
109 COPY_UNALIGNED_WORD (value, *location, align);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/arch-iop32x/
H A Ddebug-macro.S16 orr \rx, \rx, #0x00800000 @ location of the UART
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/kernel/
H A Dmodule.c50 uint32_t *location; local
56 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
65 /* We add the value into the location given */
66 *location += sym->st_value;
70 *location += sym->st_value - (uint32_t)location;
90 uint32_t *location; local
96 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
105 /* We add the value into the location given */
106 *location
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc/kernel/
H A Dmodule.c96 u8 *location; local
103 location = (u8 *)sechdrs[sechdrs[relsec].sh_info].sh_addr
105 loc32 = (u32 *) location;
115 location[0] = v >> 24;
116 location[1] = v >> 16;
117 location[2] = v >> 8;
118 location[3] = v >> 0;
122 v -= (Elf32_Addr) location;
128 v -= (Elf32_Addr) location;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/avr32/kernel/
H A Dmodule.c169 uint32_t *location; local
172 location = (void *)dstsec->sh_addr + rel->r_offset;
203 *location = relocation;
206 relocation -= (Elf32_Addr)location;
214 value = *location;
219 *location = value;
222 relocation -= (Elf32_Addr)location;
228 value = get_u16(location);
232 put_u16(location, value);
235 relocation -= (Elf32_Addr)location;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libcroco/
H A Dcr-pseudo.h29 #include "cr-parsing-location.h"
51 CRParsingLocation location ; member in struct:_CRPseudo
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libcroco/
H A Dcr-pseudo.h29 #include "cr-parsing-location.h"
51 CRParsingLocation location ; member in struct:_CRPseudo
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/include/linux/netfilter/
H A Dxt_u32.h28 struct xt_u32_location_element location[XT_U32_MAXSIZE+1]; member in struct:xt_u32_test
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/rio/
H A Drioinfo.h44 long location; /* RIO Card Base I/O address */ member in struct:RioHostInfo
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/passdb/
H A Dpdb_plugin.c27 NTSTATUS pdb_init_plugin(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location) argument
34 if (location == NULL) {
39 plugin_name = smb_xstrdup(location);
78 DEBUG(5, ("Starting sam plugin %s with location %s\n", plugin_name, plugin_location));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dprogreloc.c134 char location[MAX_PATH]; local
135 int length = GetModuleFileName (NULL, location, sizeof (location));
138 if (!IS_PATH_WITH_DIR (location))
154 cygwin_conv_to_posix_path (location, location_as_posix_path);
162 return xstrdup (location);
195 char location[4096];
196 unsigned long length = sizeof (location);
197 if (_NSGetExecutablePath (location, &length) == 0
198 && location[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dprogreloc.c134 char location[MAX_PATH]; local
135 int length = GetModuleFileName (NULL, location, sizeof (location));
138 if (!IS_PATH_WITH_DIR (location))
154 cygwin_conv_to_posix_path (location, location_as_posix_path);
162 return xstrdup (location);
195 char location[4096];
196 unsigned long length = sizeof (location);
197 if (_NSGetExecutablePath (location, &length) == 0
198 && location[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/srclib/
H A Dprogreloc.c135 char location[MAX_PATH]; local
136 int length = GetModuleFileName (NULL, location, sizeof (location));
139 if (!IS_PATH_WITH_DIR (location))
155 cygwin_conv_to_posix_path (location, location_as_posix_path);
163 return xstrdup (location);
196 char location[4096];
197 unsigned long length = sizeof (location);
198 if (_NSGetExecutablePath (location, &length) == 0
199 && location[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/pseries/
H A Deeh_driver.c310 const char *location, *pci_str, *drv_str; local
317 location = of_get_property(event->dn, "ibm,loc-code", NULL);
318 location = location ? location : "unknown";
320 "for location=%s pci addr=%s\n",
321 location, pci_name(event->dev));
324 location = of_get_property(frozen_dn, "ibm,loc-code", NULL);
325 location = location
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Dfile.c47 unsigned long location; member in struct:filetag
144 if (tag1->location < tag2->location)
146 else if (tag1->location > tag2->location)
168 /* sort tags by location */
200 long location; local
205 location = ftell(file->iofile);
206 if (location == -1)
213 begin1 = location;
520 long location; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/packages/libid3tag-0.15.0b/
H A Dfile.c47 unsigned long location; member in struct:filetag
144 if (tag1->location < tag2->location)
146 else if (tag1->location > tag2->location)
168 /* sort tags by location */
200 long location; local
205 location = ftell(file->iofile);
206 if (location == -1)
213 begin1 = location;
520 long location; local
[all...]

Completed in 179 milliseconds

1234567891011>>