Symbol: FUNCTION
headers/private/file_systems/DebugSupport.h
161
#define FUNCTION(x...) TFUNCTION(x)
headers/private/file_systems/DebugSupport.h
171
#define FUNCTION(x...) ;
headers/private/system/arch/arm/asm_defs.h
15
#define FUNCTION(name) .global name; .type name, %function; name
headers/private/system/arch/arm64/asm_defs.h
11
#define FUNCTION(name) .global name; .type name, %function; name
headers/private/system/arch/m68k/asm_defs.h
12
#define FUNCTION(name) .global name; .type name, @function; name
headers/private/system/arch/mipsel/asm_defs.h
12
#define FUNCTION(name) .global name; .type name, @function; name
headers/private/system/arch/ppc/asm_defs.h
12
#define FUNCTION(name) .global name; .type name, @function; name
headers/private/system/arch/riscv64/asm_defs.h
15
#define FUNCTION(name) .global name; .type name, %function; name
headers/private/system/arch/sparc/asm_defs.h
15
#define FUNCTION(name) .global name; .type name, %function; name
headers/private/system/arch/x86/asm_defs.h
12
#define FUNCTION(name) .global name; .type name, @function; name
headers/private/system/arch/x86_64/asm_defs.h
12
#define FUNCTION(name) .global name; .type name, @function; name
headers/private/userlandfs/shared/Debug.h
121
#define FUNCTION(x) TFUNCTION(x)
headers/private/userlandfs/shared/Debug.h
135
#define FUNCTION(x) ;
src/add-ons/kernel/drivers/network/ether/etherpci/etherpci.c
34
#define FUNCTION 0x0020 /* function calls */
src/add-ons/kernel/file_systems/bfs/Debug.h
59
#define FUNCTION() ;
src/add-ons/kernel/file_systems/bfs/Debug.h
73
#define FUNCTION() ;
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
155
#define FUNCTION(x...) TFUNCTION(x)
src/add-ons/kernel/file_systems/bindfs/DebugSupport.h
169
#define FUNCTION(x...) ;
src/add-ons/kernel/file_systems/btrfs/kernel_interface.cpp
27
#define FUNCTION() dprintf("\33[34mbtrfs:\33[0m %s()\n",__PRETTY_FUNCTION__);
src/add-ons/kernel/file_systems/fat/debug.h
114
#define FUNCTION() ;
src/add-ons/kernel/file_systems/fat/debug.h
85
#define FUNCTION() __out("fat[%" B_PRId32 "]: %s()\n", find_thread(NULL), __FUNCTION__);
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
154
#define FUNCTION(x...) TFUNCTION(x)
src/add-ons/kernel/file_systems/netfs/headers/shared/DebugSupport.h
168
#define FUNCTION(x...) ;
src/apps/codycam/VideoConsumer.cpp
40
#define FUNCTION printf
src/apps/icon-o-matic/generic/support/Debug.h
122
#define FUNCTION(x) TFUNCTION(x)
src/apps/icon-o-matic/generic/support/Debug.h
135
#define FUNCTION(x) ;
src/apps/mediaplayer/media_node_framework/video/VideoConsumer.cpp
34
# define FUNCTION(x...) printf(x)
src/apps/mediaplayer/media_node_framework/video/VideoConsumer.cpp
40
# define FUNCTION(x...)
src/apps/mediaplayer/media_node_framework/video/VideoProducer.cpp
28
# define FUNCTION(x...) TRACE(x)
src/apps/mediaplayer/media_node_framework/video/VideoProducer.cpp
32
# define FUNCTION(x...)
src/bin/unzip/beos.c
560
# define FUNCTION (flag & FN_MASK)
src/servers/package/DebugSupport.h
159
#define FUNCTION(x...) TFUNCTION(x)
src/servers/package/DebugSupport.h
173
#define FUNCTION(x...) ;
src/servers/registrar/Debug.h
60
#define FUNCTION(x) { __out(DEBUG_APP ": %s() ",__FUNCTION__); __out x; }
src/servers/registrar/Debug.h
73
#define FUNCTION(x...) ;
src/system/boot/platform/amiga_m68k/shell.S
47
#define FUNCTION(x) .global x; .type x,@function; x
src/system/boot/platform/amiga_m68k/stage1.S
5
#define FUNCTION(x) .global x; .type x,@function; x
src/system/boot/platform/atari_m68k/shell.S
52
#define FUNCTION(x) .global x; .type x,@function; x
src/system/boot/platform/atari_m68k/stage1.S
8
#define FUNCTION(x) .global x; .type x,@function; x
src/system/boot/platform/bios_ia32/bios_asm.S
16
#define FUNCTION(x) .globl x ; x ## :
src/system/boot/platform/bios_ia32/support.S
7
#define FUNCTION(x) .global x; .type x,@function; x
src/system/boot/platform/openfirmware/arch/ppc/arch_start_kernel.S
6
#define FUNCTION(x) .global x; .type x,@function; x
src/system/boot/platform/openfirmware/arch/sparc/arch_start_kernel.S
6
#define FUNCTION(x) .global x; .type x,@function; x
src/system/boot/platform/pxe_ia32/pxe_bios.S
17
#define FUNCTION(x) .globl x ; x ## :
src/system/glue/arch/arm/crti.S
23
#define FUNCTION(x) .global x; .type x,%function; x
src/system/glue/arch/arm64/crti.S
20
#define FUNCTION(x) .globl x; .type _init, %function; x
src/system/glue/arch/m68k/crti.S
20
#define FUNCTION(x) .global x; .type x,@function; x
src/system/glue/arch/ppc/crti.S
20
#define FUNCTION(x) .global x; .type x,@function; x
src/system/glue/arch/riscv64/crti.S
20
#define FUNCTION(x) .global x; .type x,%function; x
src/system/glue/arch/x86/crti.S
20
#define FUNCTION(x) .global x; .type x,@function; x
src/system/kernel/arch/ppc/arch_cpu_asm.S
6
#define FUNCTION(x) .global x; .type x,@function; x
src/system/kernel/events/wait_for_objects.cpp
43
# define FUNCTION(x) dprintf x
src/system/kernel/events/wait_for_objects.cpp
46
# define FUNCTION(x) ;
src/system/kernel/fs/vfs.cpp
76
# define FUNCTION(x) dprintf x
src/system/kernel/fs/vfs.cpp
79
# define FUNCTION(x) ;
src/system/libroot/os/arch/ppc/system_time_asm.S
6
#define FUNCTION(x) .global x; .type x,@function; x
src/system/libroot/posix/arch/m68k/setjmp_internal.h
24
#define FUNCTION(x) .global x; .type x,@function; x
src/system/libroot/posix/arch/ppc/setjmp_internal.h
45
#define FUNCTION(x) .global x; .type x,@function; x
src/tests/add-ons/kernel/file_systems/udf/udf_shell/Debug.h
65
#define FUNCTION() __out("udf: %s()\n",__FUNCTION__);
src/tests/add-ons/kernel/file_systems/udf/udf_shell/Debug.h
77
#define FUNCTION() ;
src/tests/system/libroot/posix/setjmp_test2.S
1
#define FUNCTION(x) .global x; .type x,@function; x
src/tools/fs_shell/vfs.cpp
41
# define FUNCTION(x) fssh_dprintf x
src/tools/fs_shell/vfs.cpp
44
# define FUNCTION(x) ;