Home
last modified time | relevance | path

Searched defs:lineno (Results 1 – 25 of 200) sorted by relevance

12345678

/third_party/ltp/testcases/kernel/syscalls/memfd_create/
Dmemfd_create_common.c32 int check_fallocate(const char *filename, const int lineno, int fd, in check_fallocate()
51 int check_fallocate_fail(const char *filename, const int lineno, int fd, in check_fallocate_fail()
72 void check_ftruncate(const char *filename, const int lineno, int fd, in check_ftruncate()
81 void check_ftruncate_fail(const char *filename, const int lineno, in check_ftruncate_fail()
96 int get_mfd_all_available_flags(const char *filename, const int lineno) in get_mfd_all_available_flags()
118 int mfd_flags_available(const char *filename, const int lineno, in mfd_flags_available()
136 int check_mfd_new(const char *filename, const int lineno, in check_mfd_new()
155 void check_mfd_fail_new(const char *filename, const int lineno, in check_mfd_fail_new()
172 void *check_mmap(const char *file, const int lineno, void *addr, size_t length, in check_mmap()
186 void check_mmap_fail(const char *file, const int lineno, void *addr, in check_mmap_fail()
[all …]
/third_party/ltp/lib/
Dsafe_macros.c26 char *safe_basename(const char *file, const int lineno, in safe_basename()
42 safe_chdir(const char *file, const int lineno, void (*cleanup_fn) (void), in safe_chdir()
58 safe_close(const char *file, const int lineno, void (*cleanup_fn) (void), in safe_close()
74 safe_creat(const char *file, const int lineno, void (*cleanup_fn) (void), in safe_creat()
89 char *safe_dirname(const char *file, const int lineno, in safe_dirname()
104 char *safe_getcwd(const char *file, const int lineno, void (*cleanup_fn) (void), in safe_getcwd()
119 struct passwd *safe_getpwnam(const char *file, const int lineno, in safe_getpwnam()
135 safe_getrusage(const char *file, const int lineno, void (*cleanup_fn) (void), in safe_getrusage()
150 void *safe_malloc(const char *file, const int lineno, void (*cleanup_fn) (void), in safe_malloc()
165 int safe_mkdir(const char *file, const int lineno, void (*cleanup_fn) (void), in safe_mkdir()
[all …]
Dtst_safe_macros.c21 int safe_setpgid(const char *file, const int lineno, pid_t pid, pid_t pgid) in safe_setpgid()
35 pid_t safe_getpgid(const char *file, const int lineno, pid_t pid) in safe_getpgid()
48 int safe_fanotify_init(const char *file, const int lineno, in safe_fanotify_init()
71 int safe_personality(const char *filename, unsigned int lineno, in safe_personality()
84 int safe_setregid(const char *file, const int lineno, in safe_setregid()
100 int safe_setreuid(const char *file, const int lineno, in safe_setreuid()
116 int safe_sigaction(const char *file, const int lineno, in safe_sigaction()
133 struct group *safe_getgrnam(const char *file, const int lineno, in safe_getgrnam()
148 struct group *safe_getgrnam_fallback(const char *file, const int lineno, in safe_getgrnam_fallback()
165 struct group *safe_getgrgid(const char *file, const int lineno, gid_t gid) in safe_getgrgid()
[all …]
Dsafe_net.c84 int tst_getsockport(const char *file, const int lineno, int sockfd) in tst_getsockport()
107 int safe_socket(const char *file, const int lineno, void (cleanup_fn)(void), in safe_socket()
135 int safe_socketpair(const char *file, const int lineno, int domain, int type, in safe_socketpair()
161 int safe_getsockopt(const char *file, const int lineno, int sockfd, int level, in safe_getsockopt()
176 int safe_setsockopt(const char *file, const int lineno, int sockfd, int level, in safe_setsockopt()
192 ssize_t safe_send(const char *file, const int lineno, char len_strict, in safe_send()
208 ssize_t safe_sendto(const char *file, const int lineno, char len_strict, in safe_sendto()
228 ssize_t safe_sendmsg(const char *file, const int lineno, size_t len, in safe_sendmsg()
250 ssize_t safe_recvmsg(const char *file, const int lineno, size_t len, in safe_recvmsg()
273 int safe_bind(const char *file, const int lineno, void (cleanup_fn)(void), in safe_bind()
[all …]
Dtst_safe_sysv_ipc.c32 int safe_msgget(const char *file, const int lineno, key_t key, int msgflg) in safe_msgget()
45 int safe_msgsnd(const char *file, const int lineno, int msqid, const void *msgp, in safe_msgsnd()
60 ssize_t safe_msgrcv(const char *file, const int lineno, int msqid, void *msgp, in safe_msgrcv()
75 int safe_msgctl(const char *file, const int lineno, int msqid, int cmd, in safe_msgctl()
91 int safe_shmget(const char *file, const int lineno, key_t key, size_t size, in safe_shmget()
105 void *safe_shmat(const char *file, const int lineno, int shmid, in safe_shmat()
119 int safe_shmdt(const char *file, const int lineno, const void *shmaddr) in safe_shmdt()
132 int safe_shmctl(const char *file, const int lineno, int shmid, int cmd, in safe_shmctl()
Dtst_assert.c12 void tst_assert_int(const char *file, const int lineno, const char *path, int val) in tst_assert_int()
26 void tst_assert_file_int(const char *file, const int lineno, const char *path, const char *prefix, … in tst_assert_file_int()
42 void tst_assert_str(const char *file, const int lineno, const char *path, const char *val) in tst_assert_str()
55 void tst_assert_file_str(const char *file, const int lineno, const char *path, const char *prefix, … in tst_assert_file_str()
Dsafe_stdio.c26 FILE *safe_fopen(const char *file, const int lineno, void (cleanup_fn)(void), in safe_fopen()
40 int safe_fclose(const char *file, const int lineno, void (cleanup_fn)(void), in safe_fclose()
55 int safe_asprintf(const char *file, const int lineno, void (cleanup_fn)(void), in safe_asprintf()
73 FILE *safe_popen(const char *file, const int lineno, void (cleanup_fn)(void), in safe_popen()
Dsafe_file_ops.c77 int file_scanf(const char *file, const int lineno, in file_scanf()
131 void safe_file_scanf(const char *file, const int lineno, in safe_file_scanf()
182 int file_lines_scanf(const char *file, const int lineno, in file_lines_scanf()
227 int file_printf(const char *file, const int lineno, in file_printf()
271 void safe_file_printf(const char *file, const int lineno, in safe_file_printf()
307 void safe_cp(const char *file, const int lineno, in safe_cp()
345 void safe_touch(const char *file, const int lineno, in safe_touch()
Dtst_safe_timerfd.c14 int safe_timerfd_create(const char *file, const int lineno, in safe_timerfd_create()
28 int safe_timerfd_gettime(const char *file, const int lineno, in safe_timerfd_gettime()
42 int safe_timerfd_settime(const char *file, const int lineno, in safe_timerfd_settime()
Dtst_checkpoint.c39 void tst_checkpoint_init(const char *file, const int lineno, in tst_checkpoint_init()
135 void tst_safe_checkpoint_wait(const char *file, const int lineno, in tst_safe_checkpoint_wait()
153 void tst_safe_checkpoint_wake(const char *file, const int lineno, in tst_safe_checkpoint_wake()
Dsafe_pthread.c12 int safe_pthread_create(const char *file, const int lineno, in safe_pthread_create()
29 int safe_pthread_join(const char *file, const int lineno, in safe_pthread_join()
Dtst_resource.c82 static int file_copy(const char *file, const int lineno, in file_copy()
100 void tst_resource_copy(const char *file, const int lineno, in tst_resource_copy()
/third_party/ltp/testcases/kernel/syscalls/ipc/libnewipc/
Dlibnewipc.c27 key_t getipckey(const char *file, const int lineno) in getipckey()
48 int get_used_queues(const char *file, const int lineno) in get_used_queues()
73 void *probe_free_addr(const char *file, const int lineno) in probe_free_addr()
/third_party/python/Lib/
Dpyclbr.py54 def __init__(self, module, name, file, lineno, parent): argument
68 def __init__(self, module, name, file, lineno, parent=None): argument
74 def __init__(self, module, name, super, file, lineno, parent=None): argument
79 def _addmethod(self, name, lineno): argument
83 def _nest_function(ob, func_name, lineno): argument
91 def _nest_class(ob, class_name, lineno, super=None): argument
Dwarnings.py10 def showwarning(message, category, filename, lineno, file=None, line=None): argument
15 def formatwarning(message, category, filename, lineno, line=None): argument
130 def filterwarnings(action, message="", category=Warning, module="", lineno=0, argument
165 def simplefilter(action, category=Warning, lineno=0, append=False): argument
327 def warn_explicit(message, category, filename, lineno, argument
403 def __init__(self, message, category, filename, lineno, file=None, argument
/third_party/ltp/include/
Dtst_safe_clocks.h18 static inline void safe_clock_getres(const char *file, const int lineno, in safe_clock_getres()
31 static inline void safe_clock_gettime(const char *file, const int lineno, in safe_clock_gettime()
45 static inline void safe_clock_settime(const char *file, const int lineno, in safe_clock_settime()
58 static inline int safe_clock_adjtime(const char *file, const int lineno, in safe_clock_adjtime()
Dtst_netlink.h24 static inline ssize_t safe_netlink_send(const char *file, const int lineno, in safe_netlink_send()
59 static inline ssize_t safe_netlink_recv(const char *file, const int lineno, in safe_netlink_recv()
Dtst_safe_prw.h8 static inline ssize_t safe_pread(const char *file, const int lineno, in safe_pread()
28 static inline ssize_t safe_pwrite(const char *file, const int lineno, in safe_pwrite()
/third_party/uboot/u-boot-2020.01/scripts/kconfig/
Dkxgettext.c66 int lineno; member
69 static struct file_line *file_line__new(const char *file, int lineno) in file_line__new()
93 const char *file, int lineno) in message__new()
134 int lineno) in message__add_file_line()
150 int lineno) in message__add()
/third_party/python/Tools/i18n/
Dpygettext.py328 def __waiting(self, ttype, tstring, lineno): argument
347 def __suiteseen(self, ttype, tstring, lineno): argument
358 def __suitedocstring(self, ttype, tstring, lineno): argument
368 def __keywordseen(self, ttype, tstring, lineno): argument
376 def __openseen(self, ttype, tstring, lineno): argument
399 def __addentry(self, msg, lineno=None, isdocstring=0): argument
/third_party/python/Doc/tools/extensions/
Dsuspicious.py64 def __init__(self, docname, lineno, issue, line): argument
126 def check_issue(self, line, lineno, issue): argument
130 def is_ignored(self, line, lineno, issue): argument
152 def report_issue(self, text, lineno, issue): argument
167 def write_log_entry(self, lineno, issue, text): argument
/third_party/ltp/include/lapi/
Dsafe_rt_signal.h11 static inline int safe_rt_sigaction(const char *file, const int lineno, in safe_rt_sigaction()
31 static inline int safe_rt_sigprocmask(const char *file, const int lineno, in safe_rt_sigprocmask()
/third_party/ltp/testcases/kernel/syscalls/inotify/
Dinotify.h33 static inline int safe_myinotify_init(const char *file, const int lineno, int fd) in safe_myinotify_init()
54 static inline int safe_myinotify_watch(const char *file, const int lineno, int wd, int fd, const ch… in safe_myinotify_watch()
/third_party/python/Include/internal/
Dpycore_object.h29 static inline void _PyObject_GC_TRACK_impl(const char *filename, int lineno, in _PyObject_GC_TRACK_impl()
63 static inline void _PyObject_GC_UNTRACK_impl(const char *filename, int lineno, in _PyObject_GC_UNTRACK_impl()
/third_party/python/Python/
D_warnings.c287 get_filter(PyObject *category, PyObject *text, Py_ssize_t lineno, in get_filter()
488 show_warning(PyObject *filename, int lineno, PyObject *text, in show_warning()
562 PyObject *filename, int lineno, PyObject *lineno_obj, in call_show_warning()
619 PyObject *filename, int lineno, in warn_explicit()
832 setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno, in setup_context()
951 int lineno; in do_warn() local
987 get_source_line(PyObject *module_globals, int lineno) in get_source_line()
1053 int lineno; in warnings_warn_explicit() local
1212 PyObject *filename, int lineno, in PyErr_WarnExplicitObject()
1228 const char *filename_str, int lineno, in PyErr_WarnExplicit()
[all …]

12345678