Searched refs:currdir (Results 1 - 25 of 28) sorted by relevance

12

/macosx-10.9.5/ICU-511.35/icuSources/samples/udata/
H A Dreader.c88 char *currdir = _getcwd(NULL, 0); local
90 char *currdir = getcwd(NULL, 0); local
94 strcpy(curPathBuffer, currdir);
98 if(currdir != NULL) {
99 free(currdir);
H A Dwriter.c69 char *currdir = _getcwd(NULL, 0); local
71 char *currdir = getcwd(NULL, 0); local
74 pData=udata_create(currdir, DATA_TYPE, DATA_NAME, &dataInfo,
77 if(currdir != NULL) {
78 free(currdir);
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/include/arch/os2/
H A Dapr_arch_threadproc.h56 char *currdir; member in struct:apr_procattr_t
/macosx-10.9.5/apr-30/apr/apr/include/arch/os2/
H A Dapr_arch_threadproc.h56 char *currdir; member in struct:apr_procattr_t
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/include/arch/netware/
H A Dapr_arch_threadproc.h61 char *currdir; member in struct:apr_procattr_t
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/include/arch/win32/
H A Dapr_arch_threadproc.h55 char *currdir; member in struct:apr_procattr_t
/macosx-10.9.5/apr-30/apr/apr/include/arch/netware/
H A Dapr_arch_threadproc.h61 char *currdir; member in struct:apr_procattr_t
/macosx-10.9.5/apr-30/apr/apr/include/arch/win32/
H A Dapr_arch_threadproc.h55 char *currdir; member in struct:apr_procattr_t
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dcompat.c465 int currdir = -2; local
470 if (currdir >= 0)
471 close(currdir);
483 if (currdir == -2)
484 currdir = open(".", O_RDONLY|O_NOCTTY);
492 currdir = -1;
500 if (currdir >= 0) {
501 if (fchdir(currdir) < 0) {
502 close(currdir);
505 close(currdir);
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/include/arch/beos/
H A Dapr_arch_threadproc.h84 char *currdir; member in struct:apr_procattr_t
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/include/arch/unix/
H A Dapr_arch_threadproc.h87 char *currdir; member in struct:apr_procattr_t
/macosx-10.9.5/apr-30/apr/apr/include/arch/beos/
H A Dapr_arch_threadproc.h84 char *currdir; member in struct:apr_procattr_t
/macosx-10.9.5/apr-30/apr/apr/include/arch/unix/
H A Dapr_arch_threadproc.h87 char *currdir; member in struct:apr_procattr_t
/macosx-10.9.5/ICU-511.35/icuSources/samples/uresb/
H A Duresb.c41 static char *currdir = NULL; variable
85 currdir = _getcwd(NULL, 0);
87 currdir = getcwd(NULL, 0);
124 strcpy(resPathBuffer, currdir);
365 UResourceBundle *error = ures_open(currdir, locale, &status);
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/threadproc/beos/
H A Dproc.c46 (*new)->currdir = NULL;
109 attr->currdir = (char *)apr_pstrcat(attr->pool, cwd, "/", dir, NULL);
112 attr->currdir = (char *)apr_pstrdup(attr->pool, dir);
114 if (attr->currdir) {
235 if (attr->currdir == NULL) {
242 newargs[1] = strdup(attr->currdir);
/macosx-10.9.5/apr-30/apr/apr/threadproc/beos/
H A Dproc.c46 (*new)->currdir = NULL;
109 attr->currdir = (char *)apr_pstrcat(attr->pool, cwd, "/", dir, NULL);
112 attr->currdir = (char *)apr_pstrdup(attr->pool, dir);
114 if (attr->currdir) {
235 if (attr->currdir == NULL) {
242 newargs[1] = strdup(attr->currdir);
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/threadproc/os2/
H A Dproc.c57 (*new)->currdir = NULL;
202 attr->currdir = apr_pstrdup(attr->pool, dir);
203 if (attr->currdir) {
322 if (attr->child_in || attr->child_out || attr->child_err || attr->currdir) {
359 if (attr->currdir != NULL) {
362 if (_chdir2(attr->currdir) < 0) {
502 if (attr->currdir != NULL) {
/macosx-10.9.5/apr-30/apr/apr/threadproc/os2/
H A Dproc.c57 (*new)->currdir = NULL;
202 attr->currdir = apr_pstrdup(attr->pool, dir);
203 if (attr->currdir) {
322 if (attr->child_in || attr->child_out || attr->child_err || attr->currdir) {
359 if (attr->currdir != NULL) {
362 if (_chdir2(attr->currdir) < 0) {
502 if (attr->currdir != NULL) {
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/threadproc/unix/
H A Dproc.c197 attr->currdir = apr_pstrdup(attr->pool, dir);
198 if (attr->currdir) {
366 if (attr->currdir) {
367 if (access(attr->currdir, X_OK) == -1) {
456 if (attr->currdir != NULL) {
457 if (chdir(attr->currdir) == -1) {
/macosx-10.9.5/apr-30/apr/apr/threadproc/unix/
H A Dproc.c200 attr->currdir = apr_pstrdup(attr->pool, dir);
201 if (attr->currdir) {
373 if (attr->currdir) {
374 if (access(attr->currdir, X_OK) == -1) {
461 if (attr->currdir != NULL) {
462 if (chdir(attr->currdir) == -1) {
650 // XXX: currdir, gid, uid, limit_proc
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/threadproc/netware/
H A Dproc.c53 apr_filepath_get(&((*new)->currdir), APR_FILEPATH_NATIVE, pool);
203 return apr_filepath_merge(&attr->currdir, NULL, dir,
342 if (attr->currdir) {
346 if ((rv = apr_filepath_merge(&fullpath, attr->currdir, progname,
/macosx-10.9.5/apr-30/apr/apr/threadproc/netware/
H A Dproc.c53 apr_filepath_get(&((*new)->currdir), APR_FILEPATH_NATIVE, pool);
203 return apr_filepath_merge(&attr->currdir, NULL, dir,
342 if (attr->currdir) {
346 if ((rv = apr_filepath_merge(&fullpath, attr->currdir, progname,
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/threadproc/win32/
H A Dproc.c211 return apr_filepath_merge(&attr->currdir, NULL, dir,
494 if ((rv = apr_filepath_merge(&fullpath, attr->currdir, progname,
499 " currdir: ", attr->currdir,
761 if (attr->currdir)
763 apr_size_t ncwd = strlen(attr->currdir) + 1;
766 if ((rv = apr_conv_utf8_to_ucs2(attr->currdir, &ncwd,
773 " on currdir: ", attr->currdir, NULL));
949 attr->currdir, /* Curren
[all...]
/macosx-10.9.5/apr-30/apr/apr/threadproc/win32/
H A Dproc.c211 return apr_filepath_merge(&attr->currdir, NULL, dir,
494 if ((rv = apr_filepath_merge(&fullpath, attr->currdir, progname,
499 " currdir: ", attr->currdir,
761 if (attr->currdir)
763 apr_size_t ncwd = strlen(attr->currdir) + 1;
766 if ((rv = apr_conv_utf8_to_ucs2(attr->currdir, &ncwd,
773 " on currdir: ", attr->currdir, NULL));
949 attr->currdir, /* Curren
[all...]
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/
H A Dinstall.rb.orig443 @currdir = '.'
487 "#{@srcdir}/#{@currdir}"
494 "#{@objdir}/#{@currdir}"
539 @currdir = rel
543 @currdir = File.dirname(rel)
1173 install_dest = File.expand_path File.join(@currdir, 'package/work/files')

Completed in 257 milliseconds

12