HomeSort by relevance Sort by last modified time
    Searched defs:user (Results 1 - 25 of 445) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit2/UIProcess/Authentication/
WebCredential.cpp 41 const String& WebCredential::user() const function in class:WebKit::WebCredential
43 return m_coreCredential.user();
  /frameworks/rs/driver/linkloader/tests/images/
simple-test.c 25 unsigned int user = 100; local
31 while (user != ans) {
34 if (scanf("%u", &user) != 1) {
38 if (user < left || user > right) {
41 } else if (user == ans) {
44 } else if (user < ans) {
45 left = user;
47 right = user;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
panel.h 48 NCURSES_CONST void *user; member in struct:panel
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
panel.h 48 NCURSES_CONST void *user; member in struct:panel
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
panel.h 48 NCURSES_CONST void *user; member in struct:panel
  /external/bison/lib/
timevar.h 25 portions of the compiler. Each measures elapsed user, system, and
54 /* User time in this process. */
55 float user; member in struct:timevar_time_def
  /external/chromium/chrome/browser/policy/
policy_path_parser_posix.cc 26 struct passwd* user = getpwuid(geteuid()); local
27 if (user) {
28 result.replace(position, strlen(kUserNamePolicyVarName), user->pw_name);
  /external/libsepol/tests/
test-expander-users.c 33 user_datum_t *user; local
40 user = (user_datum_t *) hashtab_search(p->p_users.table, user_name);
41 if (!user) {
43 CU_FAIL("user not found");
48 ebitmap_for_each_bit(&user->roles.roles, tnode, i) {
62 printf("role %s associated with user %s %d times\n", role_names[j], user_name, found[j]);
63 CU_FAIL("user mapping failure\n");
  /external/openssh/
auth-shadow.c 91 const char *user = ctxt->pw->pw_name; local
96 if ((spw = getspnam((char *)user)) == NULL) {
97 error("Could not get shadow information for %.100s", user);
109 pr = getprpwnam((char *)user);
125 logit("User %.100s password has expired (root forced)", user);
130 logit("User %.100s password has expired (password aged)", user);
  /external/oprofile/daemon/
opd_events.h 27 unsigned long user; member in struct:opd_event
  /external/oprofile/libop/
op_parse_event.h 24 int user; member in struct:parsed_event
32 * event_name:count[:unit_mask:kernel:user]
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
DepartQueuePacket.java 27 * <li>The user wants to leave the queue. In this case, an instance of this class
28 * should be created without passing in a user address.
29 * <li>An administrator or the server removes wants to remove a user from the queue.
30 * In that case, the address of the user to remove from the queue should be
37 private String user; field in class:DepartQueuePacket
50 * specified user.
53 * @param user the user to make depart from the queue.
55 public DepartQueuePacket(String workgroup, String user) {
56 this.user = user;
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/user/
QueueListener.java 20 package org.jivesoftware.smackx.workgroup.user;
31 * The user joined the workgroup queue.
36 * The user departed the workgroup queue.
41 * The user's queue position has been updated to a new value.
43 * @param currentPosition the user's current position in the queue.
48 * The user's estimated remaining wait time in the queue has been updated.
51 * the user is routed to the agent.
  /system/core/toolbox/
chown.c 18 fprintf(stderr, "Usage: chown <USER>[:GROUP] <FILE1> [FILE2] ...\n");
22 // Copy argv[1] to 'user' so we can truncate it at the period
24 char user[32]; local
26 strncpy(user, argv[1], sizeof(user));
27 if ((group = strchr(user, ':')) != NULL) {
29 } else if ((group = strchr(user, '.')) != NULL) {
39 pw = getpwnam(user);
44 uid = (int) strtoul(user, &endptr, 0);
45 if (endptr == user) { // no conversio
    [all...]
  /external/smack/src/org/jivesoftware/smack/proxy/
Socks4ProxySocketFactory.java 79 String user = proxy.getProxyUsername(); local
132 if(user!=null)
134 System.arraycopy(user.getBytes(), 0, buf, index, user.length());
135 index+=user.length();
162 report different user-ids
Socks5ProxySocketFactory.java 83 String user = proxy.getProxyUsername(); local
146 if(user==null || passwd==null)
172 buf[index++]=(byte)(user.length());
173 System.arraycopy(user.getBytes(), 0, buf, index,
174 user.length());
175 index+=user.length();
  /bionic/libc/kernel/common/linux/
kernel_stat.h 30 cputime64_t user; member in struct:cpu_usage_stat
  /development/ndk/platforms/android-3/include/linux/
kernel_stat.h 23 cputime64_t user; member in struct:cpu_usage_stat
  /development/samples/SampleSyncAdapter/tests/src/com/example/android/samplesync/client/
UserTest.java 18 import com.example.android.samplesync.client.User;
28 User user = local
29 new User("mjoshi", "Megha", "Joshi", "1-650-335-5681", "1-650-111-5681",
31 assertEquals("Megha", user.getFirstName());
32 assertEquals("Joshi", user.getLastName());
33 assertEquals("mjoshi", user.getUserName());
34 assertEquals(1, user.getUserId());
35 assertEquals("1-650-335-5681", user.getCellPhone());
36 assertEquals(false, user.isDeleted())
46 User user = User.valueOf(jsonObj); local
    [all...]
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
UnixStream.cpp 56 // First, create user-specific temp directory if needed
57 const char* user = getenv("USER"); local
58 if (user != NULL) {
60 snprintf(tmp, sizeof(tmp), "/tmp/android-%s", user);
71 user = NULL; // will fall-back to /tmp
75 user = NULL; // will fallback to /tmp
79 if (user == NULL) { // fallback to /tmp in case of error
  /external/chromium/chrome/browser/chromeos/
metrics_cros_settings_provider.cc 43 UserManager *user = UserManager::Get(); local
44 if (user->user_is_logged_in() && !user->current_user_is_owner())
  /external/libsepol/include/sepol/policydb/
context.h 11 * that can be interpreted by a user or application
27 * A security context consists of an authenticated user
31 uint32_t user; member in struct:context_struct
75 dst->user = src->user;
86 c->user = c->role = c->type = 0;
92 return ((c1->user == c2->user) &&
  /external/libxml2/include/libxml/
uri.h 38 char *user; /* the user part */ member in struct:_xmlURI
  /external/smack/src/org/apache/qpid/management/common/sasl/
UserPasswordCallbackHandler.java 31 private String user; field in class:UserPasswordCallbackHandler
34 public UserPasswordCallbackHandler(String user, String password)
36 this.user = user;
47 ncb.setName(user);
  /external/smack/src/org/jivesoftware/smackx/
OfflineMessageHeader.java 29 * Each offline message is identified by the target user of the offline message and a unique stamp.
36 * Bare JID of the user that was offline when the message was sent.
38 private String user; field in class:OfflineMessageHeader
40 * Full JID of the user that sent the message.
52 user = item.getEntityID();
58 * Returns the bare JID of the user that was offline when the message was sent.
60 * @return the bare JID of the user that was offline when the message was sent.
63 return user;
67 * Returns the full JID of the user that sent the message.
69 * @return the full JID of the user that sent the message
    [all...]

Completed in 8875 milliseconds

1 2 3 4 5 6 7 8 91011>>