/external/chromium_org/chrome/browser/chromeos/extensions/ |
first_run_private_api.cc | 19 chromeos::User* user = local 21 if (!user->given_name().empty()) { 25 user->given_name()));
|
/external/chromium_org/ash/system/user/ |
login_status.cc | 5 #include "ash/system/user/login_status.h" 15 namespace user { namespace in namespace:ash 50 } // namespace user
|
login_status.h | 11 namespace user { namespace in namespace:ash 15 LOGGED_IN_LOCKED, // A user has locked the screen 16 LOGGED_IN_USER, // A regular user is logged in 21 LOGGED_IN_LOCALLY_MANAGED, // A locally managed user is logged in 28 } // namespace 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/chromium_org/chrome/browser/policy/ |
policy_path_parser_linux.cc | 37 struct passwd* user = getpwuid(geteuid()); local 38 if (user) { 39 result.replace(position, strlen(kUserNamePolicyVarName), user->pw_name);
|
/external/chromium_org/tools/cr/ |
main.py | 13 import cr.auto.user namespace 28 # Add the users plugin dir to the cr.auto.user package scan 30 cr.auto.user.__path__.append(user_path)
|
/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/chromium_org/chrome/browser/chromeos/login/ |
auth_sync_observer.cc | 48 User* user = UserManager::Get()->GetUserByProfile(profile_); local 56 // needed because sign-out/sign-in solution is suggested to the user. 60 std::string email = user->email(); 62 // TODO(nkostyelv): Change observer after active user has changed. 63 User::OAuthTokenStatus old_status = user->oauth_token_status(); 65 User::OAUTH2_TOKEN_STATUS_INVALID); 66 if (user->GetType() == User::USER_TYPE_LOCALLY_MANAGED & [all...] |