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

<<11121314151617181920>>

  /external/chromium/chrome/browser/resources/
bug_report.js 103 if ($('user-email-text') && $('sys-info-checkbox')) {
104 var userEmail= $('user-email-text').textContent;
105 if (!$('user-email-checkbox').checked)
160 * Change the type of screenshot we're showing to the user from
175 * Change the type of screenshot we're showing to the user from
  /external/quake/quake/src/QW/client/
zone.c 565 cache_user_t *user; member in struct:cache_system_s
591 new->user = c->user;
593 Cache_Free (c->user);
594 new->user->data = (void *)(new+1);
600 Cache_Free (c->user); // tough luck...
646 Cache_Free (c->user); // didn't move out of the way
767 Cache_Free ( cache_head.next->user ); // reclaim the space
896 cs->user = c;
904 Cache_Free ( cache_head.lru_prev->user );
    [all...]
  /external/quake/quake/src/WinQuake/
zone.cpp 560 cache_user_t *user; member in struct:cache_system_s
586 newc->user = c->user;
588 Cache_Free (c->user);
589 newc->user->data = (void *)(newc+1);
595 Cache_Free (c->user); // tough luck...
641 Cache_Free (c->user); // didn't move out of the way
762 Cache_Free ( cache_head.next->user ); // reclaim the space
891 cs->user = c;
899 Cache_Free ( cache_head.lru_prev->user );
    [all...]
  /external/webkit/Source/WebKit/chromium/tests/
KURLTest.cpp 56 const char* user; member in struct:__anon13504::ComponentCase
72 const char* user; member in struct:__anon13504::GetterCase
93 EXPECT_EQ(cases[i].user, kurl.user());
107 EXPECT_EQ(cases[i].user, kurl.user());
121 // url protocol host port user pass path lastPath query ref
144 EXPECT_EQ(cases[i].user, kurl.user());
198 const char* user; member in struct:__anon13504::ExpectedComponentCase
    [all...]
  /external/chromium/chrome/browser/resources/picasaweb_uploader/js/
picasa_client.js 79 * Client object stores user credentials and gets from and sends to picasa
90 * User credentials.
97 * User id.
104 * List of user albums.
133 * User id.
149 * Captcha url to show to user, if needed.
157 * Get user credential for picasa web server.
158 * @param {string} login User login.
159 * @param {string} password User password.
253 * Gets the feed from web server and parses it. Appends user credentials
    [all...]
  /external/llvm/lib/Support/
Timer.cpp 131 sys::TimeValue now(0,0), user(0,0), sys(0,0);
135 sys::Process::GetTimeUsage(now, user, sys);
137 sys::Process::GetTimeUsage(now, user, sys);
142 Result.UserTime = user.seconds() + user.microseconds() / 1000000.0;
339 OS << " ---User Time---";
343 OS << " --User+System--";
  /external/iproute2/doc/
api-ip6-flowlabels.tex 34 \item To allow user to set traffic class bits.
36 \item To allow user to read traffic class bits of received packets.
42 \item To assign flow labels to packets sent by user.
149 message to user space, though the kernels which support flow labels
150 initialize it to zero. If user wants to get received flowinfo, he
224 storage, so that the full implementation necessarily includes user space flow
229 to user space. When user needs label he requests manager directly. The approach
233 One idea is to disallow not privileged user to allocate flow
239 \item {\bf ``Indirect''.} Kernel redirects requests to user level daemo
    [all...]
  /external/libxml2/
uri.c 317 * Parse an user informations part and fills in the appropriate fields
335 if (uri->user != NULL) xmlFree(uri->user);
337 uri->user = STRNDUP(*str, cur - *str);
339 uri->user = xmlURIUnescapeString(*str, cur - *str, NULL);
1071 if (uri->user != NULL) {
1072 p = uri->user;
    [all...]
  /external/chromium/googleurl/src/
url_parse.cc 69 const Component& user,
72 // Find the first colon in the user section, which separates the username and
75 while (colon_offset < user.len && spec[user.begin + colon_offset] != ':')
78 if (colon_offset < user.len) {
80 *username = Component(user.begin, colon_offset);
81 *password = MakeRange(user.begin + colon_offset + 1,
82 user.begin + user.len);
85 *username = user;
    [all...]
  /external/qemu/target-arm/
op_helper.c 298 /* Access to user mode registers from privileged modes. */
482 int user = cpu_mmu_index(env);
483 #define LDB(addr) slow_ldb_mmu(addr, user, GETPC())
484 #define LDW(addr) slow_ldw_mmu(addr, user, GETPC())
485 #define LDL(addr) slow_ldl_mmu(addr, user, GETPC())
486 #define LDQ(addr) slow_ldq_mmu(addr, user, GETPC())
487 #define STB(addr, val) slow_stb_mmu(addr, val, user, GETPC())
488 #define STW(addr, val) slow_stw_mmu(addr, val, user, GETPC())
489 #define STL(addr, val) slow_stl_mmu(addr, val, user, GETPC())
490 #define STQ(addr, val) slow_stq_mmu(addr, val, user, GETPC()
    [all...]
  /external/openssl/crypto/rand/
rand_win.c 241 HMODULE user = NULL; local
388 (user = LoadLibrary(TEXT("USER32.DLL"))))
394 win = (GETFOREGROUNDWINDOW) GetProcAddress(user, "GetForegroundWindow");
395 cursor = (GETCURSORINFO) GetProcAddress(user, "GetCursorInfo");
396 queue = (GETQUEUESTATUS) GetProcAddress(user, "GetQueueStatus");
432 FreeLibrary(user);
  /frameworks/base/services/java/com/android/server/pm/
UserManager.java 53 private static final String TAG_USER = "user";
98 * Returns an array of user ids. This array is cached here for quick access, so do not modify or
100 * @return the array of user ids.
124 Slog.e(LOG_TAG, "Unable to read user list");
132 UserInfo user = readUser(Integer.parseInt(id)); local
133 if (user != null) {
134 mUsers.put(user.id, user);
147 // Create the primary user
158 * Writes the user file in this format
214 UserInfo user = mUsers.valueAt(i); local
    [all...]
  /external/dbus/bus/
bus.c 54 char *user; member in struct:BusContext
291 const char *user, *pidfile; local
355 user = bus_config_parser_get_user (parser);
356 if (user != NULL)
358 context->user = _dbus_strdup (user);
359 if (context->user == NULL)
816 /* check user before we fork */
817 if (context->user != NULL)
819 if (!_dbus_verify_daemon_user (context->user))
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
HttpAuthHandlerTest.java 153 MyWebViewClient(boolean proceed, String user, String password) {
155 mUser = user;
  /external/chromium/chrome/browser/policy/
browser_policy_connector.cc 157 BrowserPolicyConnector::LockDevice(const std::string& user) {
160 return install_attributes_->LockDevice(user);
  /external/chromium/chrome/browser/resources/gpu_internals/
tab_control.css 20 -webkit-user-select: none;
  /external/iptables/iptables/
iptables-apply 45 by iptables-restore) to iptables, then prompt the user whether the changes
46 are okay. If the new ruleset cut the existing connection, the user will not
  /external/libpcap/
pcap-septel.c 73 static int septel_read(pcap_t *p, int cnt, pcap_handler callback, u_char *user) {
83 * LOCAL 0xdd * upe - Example user part task */
174 /* Call the user supplied callback function */
175 callback(user, &pcap_header, dp);
  /external/nist-sip/java/gov/nist/javax/sip/address/
AddressImpl.java 123 /** Get the user@host:port for the address field. This assumes
127 *@return string containing user@host:port.
322 /** Set the user name for the imbedded URI.
324 *@param user -- user name to set for the imbedded URI.
326 public void setUser(String user) {
327 ((SipUri) this.address).setUser(user);
SipUri.java 112 *Clear the password from the user part if it exists.
164 // For two URIs to be equal, the user, password, host, and port
186 // transport, user, ttl or method must match when present in either
267 * @return user@host portion of the uri (null if none exists).
269 * Peter Musgrave - handle null user
272 String user = ""; local
274 user = authority.getUserInfo().getUser();
278 if (user.equals("")) {
281 s = new StringBuffer(user).append(AT);
288 * @return user@host portion of the uri (null if none exists)
291 String user = ""; local
    [all...]
  /external/oprofile/daemon/
opd_events.c 91 event->user = 1;
114 event->user = copy_ulong(&c, ',');
  /external/webkit/Source/WebCore/css/
mediaControlsChromium.css 34 -webkit-user-select: none;
75 -webkit-user-select: none;
97 -webkit-user-select: none;
130 -webkit-user-select: none;
mediaControlsQt.css 39 -webkit-user-select: none;
53 -webkit-user-select: none;
109 -webkit-user-select: none;
127 -webkit-user-select: none;
  /frameworks/base/cmds/keystore/
test-keystore 51 declare -r user=$1
53 run adb shell su $user keystore_cli "$@"
70 log "reset keystore as system user"
82 log "but system user does"
124 log "root can read system user keys (as can wifi or vpn users)"
130 # app user tests
138 log "app user cannot use reset, password, lock, unlock"
  /frameworks/base/services/java/com/android/server/connectivity/
Vpn.java 109 // Only system user can revoke a package.
181 intent.setClassName(mPackage, config.user);
184 throw new SecurityException("Cannot find " + config.user);
187 throw new SecurityException(config.user + " does not require " + BIND_VPN_SERVICE);
220 throw new IllegalStateException("Cannot bind " + config.user);
238 Log.i(TAG, "Established by " + config.user + " on " + mInterface);
241 config.user = mPackage;
371 // Only system user can call this method.
409 mInfo.key = mConfig.user;
410 mConfig.user = VpnConfig.LEGACY_VPN
    [all...]

Completed in 789 milliseconds

<<11121314151617181920>>