HomeSort by relevance Sort by last modified time
    Searched refs:user (Results 151 - 175 of 979) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium/chrome/browser/chromeos/login/
screen_lock_view.cc 143 // User icon.
144 UserManager::User user = screen_locker_->user(); local
145 user_view_->SetImage(user.image(), user.image());
147 // User name.
148 std::wstring text = UTF8ToWide(user.GetDisplayName());
246 UserManager::User* user = Details<UserManager::User>(details).ptr()
    [all...]
screen_locker_tester.h 32 // Injects MockAuthenticate that uses given |user| and |password|.
33 void InjectMockAuthenticator(const std::string& user,
  /external/dnsmasq/contrib/dynamic-dnsmasq/
dynamic-dnsmasq.pl 30 # port 9020, and include the hostname, user and pass, and it should
53 die "Usage: $0 ADD USER PASS HOSTNAME\n" unless @ARGV == 4;
56 die "Usage: $0 DEL USER\n" unless @ARGV == 2;
57 print "Are you sure you want to delete user \"$ARGV[1]\"? [N/y] ";
75 print "user $key, hostname $domain, ip $ip\n";
125 my ($user,$pass) = split ":", MIME::Base64::decode($1);
126 if ( authorize($user, $pass, $cgi{'hostname'}, $cgi{'myip'}) == 0 ) {
142 my ($user, $pass, $hostname) = @_;
144 $X->put($user, join("\t", ($pass, $hostname)));
150 my ($user, $pass, $hostname) = @_
    [all...]
  /external/netperf/
netcpu_pstatnew.c 33 original psp_idlecycles - one for user, one for kernel and one for
43 uint64_t user; member in struct:cpu_time_counters
113 res[i].user = (((uint64_t)psp[i].psp_usercycles.psc_hi << 32) +
117 "user[%d] = 0x%"PRIx64" ",
119 res[i].user);
163 "\t user %llu\n",counters[instance].user);
204 /* the one that the user want for the cpu utilization */
227 thing in measuring user, kernel, interrupt and idle all together
231 properly accounted. The sum of user, kernel, interrupt and idl
    [all...]
netcpu_kstat10.c 46 uint64_t user; member in struct:cpu_time_counters
63 "\t user %llu\n",counters[instance].user);
148 counters[cpu_num].user = knp->value.ui64;
156 something and we need to warn the user. raj 2005-01-28 */
336 /* the one that the user want for the cpu utilization */
352 spent in user, idle and kernel. We also have nanoseconds spent
355 accounting. this means that time accounted in user, kernel or
357 porpoises we do not really care about that for user and kernel,
366 time from each of user, kernel and idle in proportion to thei
    [all...]
  /external/webkit/Source/WebCore/platform/network/brew/
SocketStreamHandleBrew.cpp 45 static void socketStreamConnectCallback(void* user, int nError)
47 SocketStreamHandlePrivate* p = reinterpret_cast<SocketStreamHandlePrivate*>(user);
57 static void getHostByNameCallback(void* user)
59 SocketStreamHandlePrivate* p = reinterpret_cast<SocketStreamHandlePrivate*>(user);
69 static void socketReadableCallback(void* user)
71 SocketStreamHandlePrivate* p = reinterpret_cast<SocketStreamHandlePrivate*>(user);
  /external/wpa_supplicant_8/src/ap/
ap_config.c 150 conf->fragm_threshold = -1; /* user driver default: 2346 */
345 static void hostapd_config_free_eap_user(struct hostapd_eap_user *user)
347 os_free(user->identity);
348 os_free(user->password);
349 os_free(user);
366 struct hostapd_eap_user *user, *prev_user; local
385 user = conf->eap_user;
386 while (user) {
387 prev_user = user;
388 user = user->next
580 struct hostapd_eap_user *user = conf->eap_user; local
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Driver4.java 70 static String userProperty = "user";
82 * Check for user and password, except for datasource =
83 * data1 which is set up not to require a user/password
92 String user = (String) info.get(userProperty); local
94 if (user == null || password == null) {
98 if (!user.equals(validuser)
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/
HelloLicenseServlet.java 3 * program logs the user in with OpenID, fetches their license state with OAuth,
42 * user IDs
63 User user = userService.getCurrentUser(); local
66 user.getEmail(),
71 // Send a signed request for the user's license state.
80 URLEncoder.encode(user.getFederatedIdentity(), "UTF-8")
105 } else { // The user isn't logged in.
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/workspace/HelloLicense/src/com/example/
HelloLicenseServlet.java 3 * program logs the user in with OpenID, fetches their license state with OAuth,
42 * user IDs
63 User user = userService.getCurrentUser(); local
66 user.getEmail(),
71 // Send a signed request for the user's license state.
80 URLEncoder.encode(user.getFederatedIdentity(), "UTF-8")
105 } else { // The user isn't logged in.
  /external/webkit/Tools/Scripts/webkitpy/common/
host.py 35 from webkitpy.common.system import executive, filesystem, platforminfo, user, workspace namespace
48 self.user = user.User()
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap.c 32 static void eap_user_free(struct eap_user *user);
86 * eap_user_get - Fetch user information from the database
88 * @identity: Identity (User-Name) of the user
90 * @phase2: 0 = EAP phase1 user, 1 = EAP phase2 (tunneled) user
93 * This function is used to fetch user information for EAP. The user will be
94 * selected based on the specified identity. sm->user and
95 * sm->user_eap_method_index are updated for the new user when a matching use
101 struct eap_user *user; local
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server.c 33 static void eap_user_free(struct eap_user *user);
87 * eap_user_get - Fetch user information from the database
89 * @identity: Identity (User-Name) of the user
91 * @phase2: 0 = EAP phase1 user, 1 = EAP phase2 (tunneled) user
94 * This function is used to fetch user information for EAP. The user will be
95 * selected based on the specified identity. sm->user and
96 * sm->user_eap_method_index are updated for the new user when a matching use
102 struct eap_user *user; local
    [all...]
  /frameworks/base/include/media/
Visualizer.h 70 void* user = 0,
88 typedef void (*capture_cbk_t)(void* user,
97 status_t setCaptureCallBack(capture_cbk_t cbk, void* user, uint32_t flags, uint32_t rate);
  /bionic/libc/kernel/arch-sh/asm/
user.h 32 struct user { struct
  /bionic/libc/kernel/common/linux/
kernel_stat.h 23 cputime64_t user; member in struct:cpu_usage_stat
  /development/ndk/platforms/android-3/arch-arm/include/asm/
user.h 34 struct user{ struct
  /development/ndk/platforms/android-3/include/linux/
kernel_stat.h 23 cputime64_t user; member in struct:cpu_usage_stat
  /development/ndk/tests/prebuilt-library/jni/
Android.mk 26 LOCAL_MODULE := foo-user
27 LOCAL_SRC_FILES := foo-user.c
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 40 """Fetches the license for a given user by making an OAuth signed request
44 userid OpenID of the user you are checking access for.
72 """Returns the license for a given user as a structured object.
75 userid: The OpenID of the user to check.
111 user = users.get_current_user()
112 if user:
116 userid = user.federated_identity()
128 'user_name': user.nickname(),
  /external/chromium/net/http/
http_auth_handler_ntlm.cc 57 // |username| may be in the form "DOMAIN\user". Parse it into the two
60 string16 user;
64 user = *username;
67 user = username->substr(backslash_idx + 1);
70 username_ = user;
  /external/nist-sip/java/javax/sip/address/
AddressFactory.java 12 SipURI createSipURI(String user, String host) throws ParseException;
  /external/qemu/android/
opengles.c 191 const char* user = getenv("USER"); local
197 if (user && user[0]) {
198 p = bufprint(p, end, "android-%s/", user);
  /external/valgrind/main/drd/tests/
rwlock_type_checking.stderr.exp 2 Attempt to use a user-defined rwlock as a POSIX rwlock: rwlock 0x.........
8 Attempt to use a POSIX rwlock as a user-defined rwlock: rwlock 0x.........
  /external/webkit/Source/WebKit/android/plugins/
ANPSoundInterface.cpp 63 static void callbackProc(int event, void* user, void* info) {
64 ANPAudioTrack* track = reinterpret_cast<ANPAudioTrack*>(user);
94 void* user) {
98 track->mUser = user;

Completed in 1576 milliseconds

1 2 3 4 5 67 8 91011>>