HomeSort by relevance Sort by last modified time
    Searched refs:user (Results 701 - 725 of 1365) sorted by null

<<21222324252627282930>>

  /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/libselinux/src/
context.c 56 * e.g user:role:type to user:role:type:sens1:cata-sens2:catb
185 def_get(user, COMP_USER)
196 def_set(user, COMP_USER)
  /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/openssh/
auth.h 53 int valid; /* user exists and is allowed to login */
58 char *user; /* username sent by the client */ member in struct:Authctxt
80 * case 'valid' is set to 0, but 'user' points to the username requested by
165 struct passwd * getpwnamallow(const char *user);
  /external/oprofile/daemon/
opd_events.c 91 event->user = 1;
114 event->user = copy_ulong(&c, ',');
  /external/smack/src/org/jivesoftware/smack/
XMPPConnection.java 74 private String user = null; field in class:XMPPConnection
81 * Flag that indicates if the user is currently authenticated with the server.
85 * Flag that indicates if the user was authenticated with the server when the connection
201 return user;
232 // Set the user.
234 this.user = response;
239 this.user = username + "@" + getServiceName();
241 this.user += "/" + resource;
280 debugger.userHasLogged(user);
303 // Set the user value
    [all...]
  /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/av/media/libnbaio/
AudioBufferProviderSource.cpp 84 ssize_t AudioBufferProviderSource::readVia(readVia_t via, size_t total, void *user,
124 ssize_t ret = via(user, readTgt, count, readPTS);
  /frameworks/base/core/java/android/app/
TaskStackBuilder.java 45 * the user may navigate out of the new task and back to the Launcher by repeated
280 UserHandle user) {
287 options, user);
  /hardware/libhardware/include/hardware/
camera2.h 294 * specific timing. The user pointer must be the same one that was passed to the
301 void *user);
507 * still image is requested by user. Settings should provide highest-quality
785 void *user);
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupBasics.java 65 * Prompts the user for the email address and password. Also prompts for "Use this account as
71 * If the domain is not known, or the user selects Manual setup, we invoke the
72 * AccountSetupAccountType activity where the user can begin to manually configure the account.
84 * -e USER "Test Account Name" \
103 private static final String EXTRA_CREATE_ACCOUNT_USER = "USER";
283 // This is never allowed in a normal user build and will exit immediately.
294 String user = intent.getStringExtra(EXTRA_CREATE_ACCOUNT_USER); local
297 if (TextUtils.isEmpty(email) || TextUtils.isEmpty(user) ||
299 Log.e(Logging.LOG_TAG, "ERROR: Force account create requires extras EMAIL, USER, " +
304 forceCreateAccount(email, user, incoming, outgoing)
554 String user = emailParts[0].trim(); local
    [all...]
  /system/media/camera/include/system/
camera_metadata.h 396 * Set user pointer in buffer. This can be used for linking the metadata buffer
397 * with other associated data. This user pointer is not copied with
401 int set_camera_metadata_user_pointer(camera_metadata_t *dst, void* user);
404 * Retrieve user pointer in buffer. Returns NULL in user if
408 int get_camera_metadata_user_pointer(camera_metadata_t *dst, void** user);
  /system/security/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"
  /bionic/libc/kernel/tools/
kernel.py 156 """return a dictionary mapping heaaders to their user set"""
186 # for path in <your list of user sources>:
260 for user in fparser.getHeaderUsers(used):
261 needed[path].add(user)
269 for user in users:
270 self.needed[header].add(user)
  /build/core/
multi_prebuilt.mk 70 $(if $(filter user,$(TARGET_BUILD_VARIANT)), \
  /external/chromium/chrome/browser/policy/
device_policy_cache_unittest.cc 18 // Test registration user name.
61 const std::string& user,
68 signed_response.set_username(user);
79 const std::string& user,
92 signed_response.set_username(user);
203 // Set new policy information. This should fail due to invalid user.
227 // Set new policy information. This should fail due to invalid user.
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_setup_flow.h 30 // user actions in the dialog.
36 // 4. Providing a message handler to handle user actions in the Web UI.
98 // Called by CloudPrintSetupMessageHandler when user authentication is
100 void OnUserSubmittedAuth(const std::string& user,
105 // Called by CloudPrintSetupMessageHandler when the user clicks on various
  /external/chromium/net/test/
test_server.cc 211 const std::string& user) const {
212 return GURL(GetScheme() + "://" + user + "@" +
218 const std::string& user,
220 return GURL(GetScheme() + "://" + user + ":" + password +
  /external/chromium/net/tools/dump_cache/
dump_files.cc 100 printf("user 0: 0x%x\n", header.user[0]);
101 printf("user 1: 0x%x\n", header.user[1]);
102 printf("user 2: 0x%x\n", header.user[2]);
103 printf("user 3: 0x%x\n", header.user[3]);
  /external/freetype/include/freetype/
ftoutln.h 99 /* user :: A typeless pointer which is passed to each */
110 void* user );
  /external/freetype/src/base/
ftutil.c 361 void* user )
372 error = iterator( cur, user );
389 void* user )
402 destroy( memory, data, user );
  /external/iproute2/tc/
m_xt.c 90 strcpy(target->t->u.user.name, target->name);
91 xtables_set_revision(target->t->u.user.name, target->revision);
302 m = xtables_find_target(t->u.user.name, XTF_TRY_LOAD);
315 t->u.user.name);

Completed in 2876 milliseconds

<<21222324252627282930>>