OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unix_path
(Results
1 - 7
of
7
) sorted by null
/external/netperf/
nettest_unix.h
31
char
unix_path
[32]; /* the path */
member in struct:stream_stream_request_struct
47
char
unix_path
[32]; /* the path */
member in struct:stream_stream_response_struct
76
char
unix_path
[32]; /* the path */
member in struct:stream_rr_request_struct
90
char
unix_path
[32]; /* the path to the dlpi device */
member in struct:stream_rr_response_struct
116
char
unix_path
[32]; /* the path */
member in struct:dg_stream_request_struct
130
char
unix_path
[32]; /* the path */
member in struct:dg_stream_response_struct
160
char
unix_path
[32]; /* the path */
member in struct:dg_rr_request_struct
175
char
unix_path
[32]; /* the path */
member in struct:dg_rr_response_struct
nettest_unix.c
423
strcpy(server.sun_path,stream_stream_response->
unix_path
);
896
strcpy(stream_stream_response->
unix_path
,myaddr_un.sun_path);
[
all
...]
/external/chromium/net/ftp/
ftp_util.h
22
static std::string UnixFilePathToVMS(const std::string&
unix_path
);
25
static std::string UnixDirectoryPathToVMS(const std::string&
unix_path
);
ftp_util.cc
26
std::string FtpUtil::UnixFilePathToVMS(const std::string&
unix_path
) {
27
if (
unix_path
.empty())
30
StringTokenizer tokenizer(
unix_path
, "/");
35
if (
unix_path
[0] == '/') {
39
DCHECK_EQ(1U,
unix_path
.length());
44
return
unix_path
.substr(1); // Drop the leading slash.
60
return
unix_path
;
70
std::string FtpUtil::UnixDirectoryPathToVMS(const std::string&
unix_path
) {
71
if (
unix_path
.empty())
74
std::string path(
unix_path
);
[
all
...]
/external/chromium_org/net/ftp/
ftp_util.h
22
static std::string UnixFilePathToVMS(const std::string&
unix_path
);
25
static std::string UnixDirectoryPathToVMS(const std::string&
unix_path
);
ftp_util.cc
33
std::string FtpUtil::UnixFilePathToVMS(const std::string&
unix_path
) {
34
if (
unix_path
.empty())
37
base::StringTokenizer tokenizer(
unix_path
, "/");
42
if (
unix_path
[0] == '/') {
46
DCHECK_EQ(1U,
unix_path
.length());
51
return
unix_path
.substr(1); // Drop the leading slash.
67
return
unix_path
;
77
std::string FtpUtil::UnixDirectoryPathToVMS(const std::string&
unix_path
) {
78
if (
unix_path
.empty())
81
std::string path(
unix_path
);
[
all
...]
/ndk/sources/host-tools/make-3.81/
main.c
910
char *
unix_path
= NULL;
1144
if (!
unix_path
&& strneq(envp[i], "PATH=", 5))
1145
unix_path
= ep+1;
906
char *
unix_path
= NULL;
local
[
all
...]
Completed in 69 milliseconds