/external/libexif/ |
D | ChangeLog | 283 * Added exif.h to the source tarball so users can generate full 321 2009-09-23 Jan Patera <patera@users.sourceforge.net> 345 2009-08-12 Lutz Mueller <lutz@users.sourceforge.com> 370 2009-03-21 Lutz Mueller <lutz@users.sourceforge.net> 386 2009-03-16 Lutz Mueller <lutz@users.sourceforge.net> 487 2008-10-20 Jan Patera <patera@users.sourceforge.net> 492 2008-10-04 Jan Patera <patera@users.sourceforge.net> 497 2008-10-08 Aric Blumer <aricblumer@users.sourceforge.net> 502 2008-10-04 Jan Patera <patera@users.sourceforge.net> 509 2008-10-04 Louis Strous <louis_strous@users.sourceforge.net> [all …]
|
/external/autotest/client/site_tests/login_RetrieveActiveSessions/ |
D | login_RetrieveActiveSessions.py | 29 users = ['first_user@nowhere.com', 'second_user@nowhere.com'] 30 for user in users: 33 sm.StartSession(users[0], '') 34 self.__check_for_users_in_actives(users[:1], 37 sm.StartSession(users[1], '') 38 self.__check_for_users_in_actives(users, sm.RetrieveActiveSessions()) 41 def __check_for_users_in_actives(self, users, actives): argument 54 expected_sessions = len(users) 59 if set(users) != set(actives.keys()): 61 (users, actives))
|
/external/ltp/testcases/kernel/security/prot_hsymlinks/ |
D | prot_hsymlinks.c | 99 static struct test_user users[USERS_NUM]; variable 206 strcpy(users[ROOT].name, "root"); in setup() 210 snprintf(users[TEST_USER].name, MAX_USER_NAME, "%s", tmp_user_name); in setup() 251 for (file = 0; file < users[usr].num; ++file) { in test_run() 252 ufile = &users[usr].file[file]; in test_run() 322 snprintf(cmd, MAX_CMD_LEN, "%s %s", user_cmd, users[TEST_USER].name); in test_user_cmd() 325 user_cmd, users[TEST_USER].name); in test_user_cmd() 339 path, users[bdir->owner].name); in create_sub_dir() 364 set_user(users[usr].name); in init_base_dirs() 380 set_user(users[usr].name); in init_files_dirs() [all …]
|
/external/toybox/toys/other/ |
D | lsmod.c | 27 *refcnt = strtok(NULL, " "), *users = strtok(NULL, " "); in lsmod_main() local 29 if(users) { in lsmod_main() 30 int len = strlen(users)-1; in lsmod_main() 31 if (users[len] == ',' || users[len] == '-') users[len] = 0; in lsmod_main() 32 xprintf("%-19s %8s %s %s\n", name, size, refcnt, users); in lsmod_main()
|
D | uptime.c | 33 int users = 0; in uptime_main() local 76 while ((entry = getutxent())) if (entry->ut_type == USER_PROCESS) users++; in uptime_main() 79 printf(" %d user%s, ", users, (users!=1) ? "s" : ""); in uptime_main()
|
/external/selinux/python/chcat/ |
D | chcat | 63 def verify_users(users): argument 64 for u in users: 71 def chcat_user_add(newcat, users): argument 76 verify_users(users) 77 for u in users: 151 def chcat_user_remove(newcat, users): argument 156 verify_users(users) 157 for u in users: 237 def chcat_user_replace(newcat, users): argument 242 verify_users(users) [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | fusion_merger.cc | 37 for (auto tuple_user : instruction->users()) { in MaybeResolveTupleElements() 66 if (std::all_of(instruction->users().begin(), instruction->users().end(), in CalculateBytesReadByFusionParameter() 72 for (auto& user : instruction->users()) { in CalculateBytesReadByFusionParameter() 201 if (fusion->users().empty()) { in HandleFusion() 223 if (!std::all_of(fusion->users().begin(), fusion->users().end(), in HandleFusion() 272 std::vector<HloInstruction*> users = fusion->users(); in HandleFusion() local 273 for (HloInstruction* user : users) { in HandleFusion() 282 << tensorflow::str_util::Join(users, ", ", in HandleFusion()
|
/external/python/cpython2/Demo/scripts/ |
D | lpwatch.py | 44 users = {} 64 ujobs, ubytes = users.get(user, (0, 0)) 67 users[user] = ujobs, ubytes 79 if totaljobs != len(users): 81 if len(users) == 1: 82 line += ' for %s' % (users.keys()[0],) 84 line += ' for %d users' % len(users)
|
/external/autotest/cli/ |
D | action_common_unittest.py | 236 def _create_add_remove(self, items, users=None, hosts=None): argument 241 if users: 242 addrm.users = users 256 users=['user0', 'user1']) 268 users=['user0', 'user1']) 276 users=['user0', 'user1']) 291 users=['user0', 'user1'], 311 users=['user0', 'user1']) 331 users=['user0', 'user1']) 357 users=['user0', 'user1']) [all …]
|
D | acl.py | 82 users = getattr(self, 'users') 85 if ((users and (hosts or acls)) or 90 if len(users) > 1: 96 self.users = users[0] 114 if self.users: 115 filters['users__login'] = self.users
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_rematerialization.cc | 269 ItemList users; in GetUsers() local 275 for (const HloInstruction* user : buffer_alias.instruction()->users()) { in GetUsers() 291 if (std::find(users.begin(), users.end(), user_item) == users.end()) { in GetUsers() 292 users.push_back(user_item); in GetUsers() 296 return users; in GetUsers() 375 ItemList users; member 397 ItemList users = GetUsers(instruction_list_, logical_buffer, in CreateBufferFromLogicalBuffer() local 400 size_function(logical_buffer->shape()), std::move(users), in CreateBufferFromLogicalBuffer() 459 Buffer& NewBuffer(Item* defining_instruction, int64 size, ItemList&& users, in NewBuffer() argument 463 has_indirect_uses, users, in NewBuffer() [all …]
|
D | reduce_precision_insertion_test.cc | 249 EXPECT_THAT(x->users(), UnorderedElementsAre(y)); in TEST_F() 259 EXPECT_THAT(x->users(), UnorderedElementsAre(y)); in TEST_F() 275 EXPECT_THAT(x->users(), UnorderedElementsAre(y)); in TEST_F() 285 EXPECT_THAT(x->users(), UnorderedElementsAre(y)); in TEST_F() 328 EXPECT_THAT(x->users(), UnorderedElementsAre(y)); in TEST_F() 340 EXPECT_THAT(x->users(), UnorderedElementsAre(y)); in TEST_F() 356 EXPECT_THAT(x->users(), UnorderedElementsAre(y)); in TEST_F() 388 EXPECT_THAT(x->users(), UnorderedElementsAre(z)); in TEST_F() 402 EXPECT_THAT(x->users(), UnorderedElementsAre(z)); in TEST_F() 424 EXPECT_THAT(x->users(), UnorderedElementsAre(z)); in TEST_F() [all …]
|
/external/libpcap/ |
D | README.macosx | 1 As with other systems using BPF, Mac OS X allows users with read access 2 to the BPF devices to capture packets with libpcap and allows users with 7 changed to give users other than root permission to read or write those 12 devices to give users other than root permission to read or write those 28 devices to rw-rw----, so that all users in the "admin" group - i.e., all 29 users with "Allow user to administer this computer" turned on - have 62 devices, rather than giving all administrative users permission to 66 give the administrative users permission to read but not write the BPF 73 traffic, non-root users who cannot open the BPF devices for writing will
|
/external/autotest/server/cros/res_resource_monitor/ |
D | top_test_data.txt | 1 top - 14:47:14 up 7:58, 9 users, load average: 0.00, 0.01, 0.05 18 top - 14:48:38 up 8:00, 9 users, load average: 0.00, 0.01, 0.05 31 top - 14:48:38 up 8:00, 9 users, load average: 0.00, 0.01, 0.05 37 top - 14:49:51 up 8:01, 8 users, load average: 0.00, 0.01, 0.05 43 top - 14:49:51 up 8:01, 8 users, load average: 0.00, 0.01, 0.05
|
/external/ltp/testcases/commands/su/ |
D | su01 | 92 useradd -m -g users $TEST_USER1 100 usermod -G users,$TEST_USER1_GROUP $TEST_USER1 127 useradd -m -g users $TEST_USER2 136 usermod -G users,$TEST_USER2_GROUP $TEST_USER2
|
/external/llvm/unittests/IR/ |
D | UseTest.cpp | 52 for (User *U : X.users()) { in TEST() 62 for (User *U : X.users()) { in TEST() 97 for (User *U : X.users()) { in TEST() 105 for (User *U : X.users()) { in TEST()
|
/external/wpa_supplicant_8/hostapd/ |
D | hostapd.eap_user_sqlite | 1 CREATE TABLE users( 14 INSERT INTO users(identity,methods,password,phase2) VALUES ('user','TTLS-MSCHAPV2','password',1); 15 INSERT INTO users(identity,methods,password,phase2) VALUES ('DOMAIN\mschapv2 user','TTLS-MSCHAPV2',…
|
/external/python/cpython2/Modules/_ctypes/darwin/ |
D | LICENSE | 1 Copyright (c) 2002 Jorge Acereda <jacereda@users.sourceforge.net> & 2 Peter O'Gorman <ogorman@users.sourceforge.net> 7 Maintained by Peter O'Gorman <ogorman@users.sourceforge.net> 9 Bug Reports and other queries should go to <ogorman@users.sourceforge.net>
|
/external/python/cpython3/Modules/_ctypes/darwin/ |
D | LICENSE | 1 Copyright (c) 2002 Jorge Acereda <jacereda@users.sourceforge.net> & 2 Peter O'Gorman <ogorman@users.sourceforge.net> 7 Maintained by Peter O'Gorman <ogorman@users.sourceforge.net> 9 Bug Reports and other queries should go to <ogorman@users.sourceforge.net>
|
/external/llvm/docs/ |
D | Packaging.rst | 16 LLVM's API changes with each release, so users are likely to want, for example, 24 However, such a build is currently incompatible with users who build without 26 in user code. We recommend allowing users to install both optimized and debug 38 should turn it back on to let users debug their programs. 51 while running ``make`` to re-enable it. This will allow users to build with
|
/external/python/cpython3/Doc/using/ |
D | unix.rst | 30 for Debian users 32 for OpenSuse users 34 for Fedora users 36 for Slackware users 42 * FreeBSD users, to add the package use:: 46 * OpenBSD users use:: 50 For example i386 users get the 2.5.1 version of Python using::
|
/external/iproute2/ip/ |
D | ipmaddr.c | 68 int users; member 100 sscanf(buf, "%d%s%d%d%s", &m.index, m.name, &m.users, &st, in read_dev_mcast() 153 sscanf(buf, "%08x%d", (__u32 *)&m.addr.data, &m.users); in read_igmp() 176 sscanf(buf, "%d%s%s%d", &m.index, m.name, hexa, &m.users); in read_igmp6() 220 if (list->users != 1) in print_maddr() 221 fprintf(fp, " users %d", list->users); in print_maddr()
|
/external/python/cpython2/Doc/installing/ |
D | index.rst | 12 supporting community of contributors and users that also make their software 15 This allows Python users to share and collaborate effectively, benefiting 26 For corporate and other institutional users, be aware that many 44 other Python users 74 For POSIX users (including Mac OS X and Linux users), the examples in 80 For Windows users, the examples in this guide assume that the option to 131 package just for the current user, rather than for all users of the system. 139 time, it will often be easier for users to install these packages by 200 users being expected to compile extension modules from source as part of 206 as users are more regularly able to install pre-built extensions rather
|
/external/python/cpython3/Doc/installing/ |
D | index.rst | 12 supporting community of contributors and users that also make their software 15 This allows Python users to share and collaborate effectively, benefiting 26 For corporate and other institutional users, be aware that many 49 other Python users. 92 For POSIX users (including Mac OS X and Linux users), the examples in 95 For Windows users, the examples in this guide assume that the option to 150 package just for the current user, rather than for all users of the system. 158 time, it will often be easier for users to install these packages by 218 users being expected to compile extension modules from source as part of 224 as users are more regularly able to install pre-built extensions rather
|
/external/selinux/python/sepolicy/sepolicy/help/ |
D | users.txt | 1 By Default on a SELinux Targeted Policy system, all users login using the unconfined_t user. 3 SELinux has a very powerful concept called confined users. You can setup individual users on your …
|