HomeSort by relevance Sort by last modified time
    Searched refs:pwd (Results 201 - 225 of 493) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/syslinux/efi64/com32/cmenu/
test.c 207 char pwd[40]; local
230 getpwd(pwd, sizeof pwd);
234 if (authenticate_user(login,pwd))
  /cts/tests/tests/permission/jni/
android_permission_cts_FileUtils.cpp 26 #include <pwd.h>
86 struct passwd *pwd = getpwuid(uid); local
87 return env->NewStringUTF(pwd->pw_name);
  /external/toybox/toys/pending/
crond.c 429 struct passwd *pwd = getpwnam(cfile->username); local
431 if (!pwd) loginfo(LOG_LEVEL9, "can't get uid for %s", cfile->username);
435 if (setenv("USER", pwd->pw_name, 1)) _exit(1);
442 if (setenv("HOME", pwd->pw_dir, 1))
445 xsetuser(pwd);
446 if (chdir(pwd->pw_dir)) loginfo(LOG_LEVEL9, "chdir(%s)", pwd->pw_dir);
  /system/core/logd/
LogStatistics.cpp 18 #include <pwd.h>
193 struct passwd* pwd = getpwuid(uid); local
194 if (pwd) {
195 return strdup(pwd->pw_name);
211 struct passwd* pwd = getpwuid(uid); local
212 if (pwd) {
213 return strdup(pwd->pw_name);
  /external/openssh/
sftp.c 204 { "pwd", I_PWD, REMOTE },
270 "pwd Display remote working directory\n"
336 /* Strip one path (usually the pwd) from the start of another */
356 make_absolute(char *p, char *pwd)
362 abs_str = path_append(pwd, p);
588 process_get(struct sftp_conn *conn, char *src, char *dst, char *pwd,
598 abs_src = make_absolute(abs_src, pwd);
672 process_put(struct sftp_conn *conn, char *src, char *dst, char *pwd,
685 tmp_dst = make_absolute(tmp_dst, pwd);
696 /* If we aren't fetching to pwd then stash this status for later *
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 299 String pwd = credentials.getPassword(); local
302 StringBuilder tmp = new StringBuilder(uname.length() + realm.length() + pwd.length() + 2);
307 tmp.append(pwd);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStoreTest.java 153 char[] pwd = new char[0]; local
166 res = kss[i].getKey(alias, pwd).getEncoded();
173 res = kss[i].getKey(alias, pwd).getEncoded();
251 keyStore.load(null, "pwd".toCharArray());
260 keyStore.setKeyEntry(alias, secretKey, "pwd".toCharArray(), null);
  /external/curl/lib/
netrc.c 26 #include <pwd.h>
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCConnection.java 144 public JDBCConnection(String url, String enc, String pwd, String drep,
160 if (pwd != null && pwd.length() > 0) {
161 db.key(pwd);
  /external/libcap/progs/old/
sucap.c 16 #include <pwd.h>
  /external/libcap-ng/libcap-ng-0.7/utils/
pscap.c 33 #include <pwd.h>
  /external/ltp/testcases/kernel/connectors/pec/
event_generator.c 27 #include <pwd.h>
  /external/ltp/testcases/kernel/module/query_module/
query_module03.c 86 #include <pwd.h>
  /external/ltp/testcases/kernel/syscalls/access/
access05.c 52 #include <pwd.h>
  /external/ltp/testcases/kernel/syscalls/adjtimex/
adjtimex02.c 92 #include <pwd.h>
  /external/ltp/testcases/kernel/syscalls/capset/
capset02.c 79 #include <pwd.h>
  /external/ltp/testcases/kernel/syscalls/chmod/
chmod05.c 97 #include <pwd.h>
  /external/ltp/testcases/kernel/syscalls/chown/
chown03.c 81 #include <pwd.h>
  /external/ltp/testcases/kernel/syscalls/creat/
creat06.c 54 #include <pwd.h>
  /external/ltp/testcases/kernel/syscalls/execve/
execve03.c 73 #include <pwd.h>
  /external/ltp/testcases/kernel/syscalls/fchmod/
fchmod05.c 87 #include <pwd.h>
fchmod06.c 40 #include <pwd.h>
  /external/ltp/testcases/kernel/syscalls/fchown/
fchown04.c 40 #include <pwd.h>
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl18.c 39 #include <pwd.h>
  /external/ltp/testcases/kernel/syscalls/fstat/
fstat05.c 93 #include <pwd.h>

Completed in 2173 milliseconds

1 2 3 4 5 6 7 891011>>