/bionic/libc/kernel/tools/ |
D | cpp.py | 108 def __init__(self, tu=None, group=None, int_data=None, ptr_data=None, argument 110 clang.cindex.Token.__init__(self) 111 self._id = None 112 self._tu = tu 113 self._group = group 114 self._cursor = cursor 118 self.int_data = int_data 119 self.ptr_data = ptr_data 122 def id(self): argument 124 if self._id is None: [all …]
|
D | kernel.py | 67 def __init__(self,config={}): argument 69 self.reset() 70 self.config = config 72 def reset(self,config={}): argument 73 self.files = set() # set of files being parsed for headers 74 self.headers = {} # maps headers to set of users 75 self.config = config 77 def checkInclude(self, line, from_file, kernel_root=None): argument 87 self.files.add(from_file) 98 if not header in self.headers: [all …]
|
D | utils.py | 45 def __init__(self): argument 46 self.line = "" 48 def write(self,msg): argument 49 self.line += msg 52 def get(self): argument 53 return self.line 76 def __init__(self): argument 77 self.old_files = set() 78 self.new_files = set() 79 self.new_data = {} [all …]
|
/bionic/libc/tools/ |
D | test_genseccomp.py | 11 def setUp(self): argument 14 def get_config(self, arch): argument 18 self.fail("No such architecture") 20 def get_headers(self, arch): argument 21 return self.get_config(arch)[1] 23 def get_switches(self, arch): argument 24 return self.get_config(arch)[2] 26 def test_get_names(self): argument 48 self.assertIn("fchown", names64) 49 self.assertNotIn("fchown", names) [all …]
|
D | genserv.py | 18 def __init__(self,name,port,proto): argument 19 self.name = name 20 self.port = port 21 self.proto = proto 22 self.aliases = [] 24 def add_alias(self,alias): argument 25 self.aliases.append(alias) 27 def __str__(self): argument 28 result = "\\%0o%s" % (len(self.name),self.name) 29 result += "\\%0o\\%0o" % (((self.port >> 8) & 255), self.port & 255) [all …]
|
D | gensyscalls.py | 405 def __init__(self): argument 406 self.syscalls = [] 407 self.lineno = 0 409 def E(self, msg): argument 410 print "%d: %s" % (self.lineno, msg) 412 def parse_line(self, line): argument 419 E = self.E 508 self.syscalls.append(t) 512 def parse_open_file(self, fp): argument 514 self.lineno += 1 [all …]
|
D | genseccomp.py | 19 def __init__(self, name, value): argument 20 self.names = [name] 21 self.begin = value 22 self.end = self.begin + 1 24 def __str__(self): argument 25 return "(%s, %s, %s)" % (self.begin, self.end, self.names) 27 def add(self, name, value): argument 28 if value != self.end: 30 self.end += 1 31 self.names.append(name)
|
D | pylintrc | 41 disable=missing-docstring,invalid-name,no-self-use,fixme,design
|
/bionic/libc/bionic/ |
D | clone.cpp | 48 pthread_internal_t* self = __get_thread(); in __start_thread() local 49 if (self && self->tid == -1) { in __start_thread() 50 self->tid = syscall(__NR_gettid); in __start_thread() 88 pthread_internal_t* self = __get_thread(); in clone() local 89 pid_t parent_pid = self->invalidate_cached_pid(); in clone() 92 pid_t caller_tid = self->tid; in clone() 97 self->tid = -1; in clone() 119 self->set_cached_pid(parent_pid); in clone() 120 self->tid = caller_tid; in clone() 121 } else if (self->tid == -1) { in clone() [all …]
|
D | gettid.cpp | 35 pthread_internal_t* self = __get_thread(); in gettid() local 36 if (__predict_true(self)) { in gettid() 37 pid_t tid = self->tid; in gettid() 41 self->tid = syscall(__NR_gettid); in gettid() 42 return self->tid; in gettid()
|
D | getpid.cpp | 36 pthread_internal_t* self = __get_thread(); in __get_cached_pid() local 37 if (__predict_true(self)) { in __get_cached_pid() 39 if (__predict_true(self->get_cached_pid(&cached_pid))) { in __get_cached_pid()
|
D | fork.cpp | 40 pthread_internal_t* self = __get_thread(); in fork() local 48 &(self->tid)); in fork() 52 self->set_cached_pid(gettid()); in fork()
|
/bionic/tools/bionicbb/ |
D | test_tasks.py | 11 def test_accepts_googlers(self, mock_commit, *other_checks): argument 20 self.assertFalse(presubmit.should_skip_build({ 29 def test_rejects_googlish_domains(self, mock_commit, *other_checks): argument 38 self.assertTrue(presubmit.should_skip_build({ 47 def test_rejects_non_googlers(self, mock_commit, *other_checks): argument 56 self.assertTrue(presubmit.should_skip_build({ 65 def test_skips_cleanspecs(self, mock_files, *other_checks): argument 71 self.assertTrue(presubmit.should_skip_build({ 80 def test_skips_bionicbb(self, mock_files, *other_checks): argument 86 self.assertTrue(presubmit.should_skip_build({
|
D | gerrit.py | 21 def __init__(self, code, url): argument 22 self.code = code 23 self.url = url 24 super(GerritError, self).__init__('Error {}: {}'.format(code, url))
|
/bionic/libc/kernel/uapi/linux/ |
D | scif_ioctl.h | 27 struct scif_port_id self; member 73 __u64 self; member
|
/bionic/libc/system_properties/ |
D | system_properties.cpp | 354 find_nth* self = reinterpret_cast<find_nth*>(ptr); in FindNth() local 355 if (self->current++ == self->sought) self->result = pi; in FindNth()
|
/bionic/tests/ |
D | dlfcn_test.cpp | 90 void* self = dlopen(nullptr, RTLD_NOW); in TEST() local 91 ASSERT_TRUE(self != nullptr); in TEST() 94 void* sym = dlsym(self, "DlSymTestFunction"); in TEST() 103 ASSERT_EQ(0, dlclose(self)); in TEST() 831 void* self = dlopen("/does/not/exist", RTLD_NOW); in TEST() local 832 ASSERT_TRUE(self == nullptr); in TEST() 899 void* self = dlopen(nullptr, RTLD_NOW); in TEST() local 900 ASSERT_TRUE(self != nullptr); in TEST() 914 sym = dlsym(self, "ThisSymbolDoesNotExist"); in TEST() 918 ASSERT_EQ(0, dlclose(self)); in TEST() [all …]
|