Searched refs:fn (Results 1 - 25 of 573) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/oss/
H A Dsound_firmware.h1 extern int mod_firmware_load(const char *fn, char **fp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/include/
H A Dinit.h69 #define __uml_initcall(fn) \
70 static initcall_t __uml_initcall_##fn __uml_init_call = fn
72 #define __uml_exitcall(fn) \
73 static exitcall_t __uml_exitcall_##fn __uml_exit_call = fn
77 #define __uml_postsetup(fn) \
78 static initcall_t __uml_postsetup_##fn __uml_postsetup_call = fn
87 #define __uml_setup(str, fn, hel
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/coreutils/libcoreutils/
H A Dcp_mv_stat.c26 int cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf) argument
28 if (sf(fn, fn_stat) < 0) {
30 bb_perror_msg("cannot stat '%s'", fn);
40 int cp_mv_stat(const char *fn, struct stat *fn_stat) argument
42 return cp_mv_stat2(fn, fn_stat, stat);
H A Dcoreutils.h9 typedef int (*stat_func)(const char *fn, struct stat *ps);
11 int cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf);
12 int cp_mv_stat(const char *fn, struct stat *fn_stat);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-c++-kde/admin/
H A Dcvs-clean.pl17 my $fn = shift;
18 lstat ($fn);
20 if (opendir (DIR, $fn)) {
22 &rmrf ($fn."/".$efn);
25 rmdir ($fn);
28 unlink ($fn);
48 for my $fn (grep (!/^\.\.?$/, readdir (DIR))) {
49 if (-d $dir.$fn) {
50 $fn eq "CVS" or $dirsdir{$fn}
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dinit.h107 #define __define_initcall(level,fn,id) \
108 static initcall_t __initcall_##fn##id __attribute_used__ \
109 __attribute__((__section__(".initcall" level ".init"))) = fn
117 #define pure_initcall(fn) __define_initcall("0",fn,1)
119 #define core_initcall(fn) __define_initcall("1",fn,1)
120 #define core_initcall_sync(fn) __define_initcall("1s",fn,1s)
121 #define postcore_initcall(fn) __define_initcal
[all...]
H A Dstop_machine.h13 * @fn: the function to run
14 * @data: the data ptr for the @fn()
15 * @cpu: the cpu to run @fn() on (or any, if @cpu == NR_CPUS.
20 * or inside any other preempt-disabled region when @fn() runs.
24 int stop_machine_run(int (*fn)(void *), void *data, unsigned int cpu);
28 * @fn: the function to run
29 * @data: the data ptr for the @fn
30 * @cpu: the cpu to run @fn on (or any, if @cpu == NR_CPUS.
33 * thread which has run @fn(): kthread_stop will return the return value
34 * of @fn()
[all...]
H A Dmemory.h83 #define hotplug_memory_notifier(fn, pri) { \
84 static struct notifier_block fn##_mem_nb = \
85 { .notifier_call = fn, .priority = pri }; \
86 register_memory_notifier(&fn##_mem_nb); \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/tests/
H A Dc-plus-plus-test-gen.py27 files = filter(lambda fn: fn.endswith(".h") and not fn.startswith("."), files)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/
H A Dglue.h20 #define ____glue(name,fn) name##fn
22 #define ____glue(name,fn) name/**/fn
24 #define __glue(name,fn) ____glue(name,fn)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv6/
H A Dip6_fib.c81 static void fib6_prune_clones(struct fib6_node *fn, struct rt6_info *rt);
82 static struct rt6_info * fib6_find_prefix(struct fib6_node *fn);
83 static struct fib6_node * fib6_repair_tree(struct fib6_node *fn);
151 struct fib6_node *fn; local
153 fn = kmem_cache_zalloc(fib6_node_kmem, GFP_ATOMIC);
155 return fn;
158 static __inline__ void node_free(struct fib6_node * fn) argument
160 kmem_cache_free(fib6_node_kmem, fn);
432 struct fib6_node *fn, *in, *ln; local
443 fn
614 fib6_add_rt2node(struct fib6_node *fn, struct rt6_info *rt, struct nl_info *info) argument
697 struct fib6_node *fn, *pn = NULL; local
825 struct fib6_node *fn; local
881 struct fib6_node *fn; local
916 struct fib6_node *fn; local
946 struct fib6_node *fn; local
972 fib6_find_prefix(struct fib6_node *fn) argument
994 fib6_repair_tree(struct fib6_node *fn) argument
1093 fib6_del_route(struct fib6_node *fn, struct rt6_info **rtp, struct nl_info *info) argument
1160 struct fib6_node *fn = rt->rt6i_node; local
1226 struct fib6_node *fn, *pn; local
1392 fib6_prune_clones(struct fib6_node *fn, struct rt6_info *rt) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/kernel/
H A Dstacktrace.h9 int (*fn)(struct stackframe *, void *), void *data);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbwrapper/
H A Drealcalls.h39 #define real_access(fn, mode) (syscall(SYS_access, (fn), (mode)))
40 #define real_chdir(fn) (syscall(SYS_chdir, (fn)))
41 #define real_chmod(fn, mode) (syscall(SYS_chmod,(fn), (mode)))
42 #define real_chown(fn, owner, group) (syscall(SYS_chown,(fn),(owner),(group)))
50 #define real_open(fn,flags,mode) (syscall(SYS_open, (fn), (flag
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dclobber.c42 void clobber_region(const char *fn, unsigned int line, char *dest, size_t len) argument
45 global_clobber_region_function = fn;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/console-tools/
H A Dsetlogcons.c18 char fn; member in struct:__anon11193
22 arg.fn = 11; /* redirect kernel messages */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/
H A Dsound_firmware.c10 static int do_mod_firmware_load(const char *fn, char **fp) argument
17 filp = filp_open(fn, 0, 0);
20 printk(KERN_INFO "Unable to load '%s'.\n", fn);
26 printk(KERN_INFO "Invalid firmware '%s'\n", fn);
33 printk(KERN_INFO "Out of memory loading '%s'.\n", fn);
40 printk(KERN_INFO "Failed to read '%s'.\n", fn);
52 * @fn: filename
67 int mod_firmware_load(const char *fn, char **fp) argument
73 r = do_mod_firmware_load(fn, fp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/torture/
H A Dvfstest.h28 int (*fn)(struct connection_struct *conn, const char *path); member in struct:func_entry
41 NTSTATUS (*fn)(struct vfs_state *vfs, TALLOC_CTX *mem_ctx, int argc, member in struct:cmd_set
H A Dsamtest.h32 NTSTATUS (*fn)(struct samtest_state *sam, TALLOC_CTX *mem_ctx, int argc, member in struct:cmd_set
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-client/
H A Dxdg-config.c41 char fn[PATH_MAX], *p = NULL, buf[2048], *s = NULL; local
46 snprintf(p = fn, sizeof(fn), "%s/%s", e, filename);
48 snprintf(p = fn, sizeof(fn), "%s/.config/%s", e, filename);
63 snprintf(fn, sizeof(fn), "%s/%s", e, filename);
65 if ((f = fopen(fn, "r")))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/coreutils/
H A Ddos2unix.c22 /* if fn is NULL then input is stdin and output is stdout */
23 static int convert(char *fn, int conv_type) argument
31 if (fn != NULL) {
32 in = xfopen(fn, "rw");
38 snprintf(name_buf, sizeof(name_buf), "%sXXXXXX", fn);
63 if (fn != NULL) {
72 if (rename(name_buf, fn) < 0) {
73 bb_perror_msg("cannot rename '%s' as '%s'", name_buf, fn);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/flac/
H A Diffscan.c58 const char *fn, *error; local
66 fn = argv[1];
67 if(0 == (f = fopen(fn, "rb")) || fread(buf, 1, 4, f) != 4) {
68 fprintf(stderr, "ERROR opening %s for reading\n", fn);
77 if(!flac__foreign_metadata_read_from_aiff(fm, fn, &error)) {
78 fprintf(stderr, "ERROR reading chunks from %s: %s\n", fn, error);
83 if(!flac__foreign_metadata_read_from_wave(fm, fn, &error)) {
84 fprintf(stderr, "ERROR reading chunks from %s: %s\n", fn, error);
88 if(0 == (f = fopen(fn, "rb"))) {
89 fprintf(stderr, "ERROR opening %s for reading\n", fn);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libdaemon-0.14/libdaemon/
H A Ddpid.c58 static char *fn = NULL; local
59 free(fn);
60 asprintf(&fn, "%s/%s.pid", VARRUN, daemon_pid_file_ident ? daemon_pid_file_ident : "unknown");
62 static char fn[PATH_MAX];
63 snprintf(fn, sizeof(fn), "%s/%s.pid", VARRUN, daemon_pid_file_ident ? daemon_pid_file_ident : "unknown");
66 return fn;
95 const char *fn; local
103 if (!(fn = daemon_pid_file_proc())) {
108 if ((fd = open(fn, O_RDW
210 const char *fn; local
268 const char *fn; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-s390/
H A Dreset.h15 void (*fn)(void); member in struct:reset_call
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dread_write.h12 unsigned long nr_segs, size_t len, loff_t *ppos, iov_fn_t fn);
14 unsigned long nr_segs, loff_t *ppos, io_fn_t fn);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/prebuilt/WW/www/cgi-bin/
H A Djquery.mousewheel.js39 $.fn.extend({
40 mousewheel: function(fn) {
41 return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel");
44 unmousewheel: function(fn) {
45 return this.unbind("mousewheel", fn);

Completed in 173 milliseconds

1234567891011>>