Searched refs:path (Results 101 - 125 of 5286) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/netatalk-3.0.5/libatalk/compat/
H A Dmktemp.c38 mkstemp(path)
39 char *path;
43 return (_gettemp(path, &fd) ? fd : -1);
47 mktemp(path)
48 char *path;
50 return(_gettemp(path, (int *)NULL) ? path : (char *)NULL);
54 _gettemp(path, doopen)
55 char *path;
64 for (trv = path; *tr
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/LPRng/src/include/
H A Dcheckpc.h33 void mkdir_path( char *path );
40 int Check_file( char *path, int fix, int age, int rmflag );
41 int Fix_create_dir( char *path, struct stat *statb );
42 int Fix_owner( char *path );
43 int Fix_perms( char *path, int perms );
44 int Check_spool_dir( char *path, int owner );
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/LPRng/src/include/
H A Dcheckpc.h33 void mkdir_path( char *path );
40 int Check_file( char *path, int fix, int age, int rmflag );
41 int Fix_create_dir( char *path, struct stat *statb );
42 int Fix_owner( char *path );
43 int Fix_perms( char *path, int perms );
44 int Check_spool_dir( char *path, int owner );
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/LPRng/src/include/
H A Dcheckpc.h33 void mkdir_path( char *path );
40 int Check_file( char *path, int fix, int age, int rmflag );
41 int Fix_create_dir( char *path, struct stat *statb );
42 int Fix_owner( char *path );
43 int Fix_perms( char *path, int perms );
44 int Check_spool_dir( char *path, int owner );
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source4/auth/gensec/
H A Dschannel_state.c37 char *path; local
45 path = private_path(mem_ctx, lp_ctx, "schannel.ldb");
46 if (!path) {
50 existed = file_exist(path);
52 ldb = ldb_wrap_connect(mem_ctx, ev_ctx, lp_ctx, path,
55 talloc_free(path);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source4/auth/gensec/
H A Dschannel_state.c37 char *path; local
45 path = private_path(mem_ctx, lp_ctx, "schannel.ldb");
46 if (!path) {
50 existed = file_exist(path);
52 ldb = ldb_wrap_connect(mem_ctx, ev_ctx, lp_ctx, path,
55 talloc_free(path);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source4/auth/gensec/
H A Dschannel_state.c37 char *path; local
45 path = private_path(mem_ctx, lp_ctx, "schannel.ldb");
46 if (!path) {
50 existed = file_exist(path);
52 ldb = ldb_wrap_connect(mem_ctx, ev_ctx, lp_ctx, path,
55 talloc_free(path);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/examples/libsmbclient/
H A Dtestread.c20 char path[2048]; local
31 *path = '\0';
32 fgets(path, sizeof(path) - 1, stdin);
33 if (strlen(path) == 0)
38 p = path + strlen(path) - 1;
44 if ((fd = smbc_open(path, O_RDONLY, 0)) < 0)
H A Dtestwrite.c20 char path[2048]; local
36 *path = '\0';
37 fgets(path, sizeof(path) - 1, stdin);
38 if (strlen(path) == 0)
43 p = path + strlen(path) - 1;
49 if ((fd = smbc_open(path, O_WRONLY | O_CREAT | O_TRUNC, 0)) < 0)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/lib/zlib/examples/
H A Dgzlog.h42 void *gzlog_open(char *path);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/os/
H A Dos_unlink.c20 __os_unlink(env, path, overwrite_test)
22 const char *path;
32 __db_msg(env, "fileops: unlink %s", path);
36 (void)__db_file_multi_write(env, path);
41 ret = DB_GLOBAL(j_unlink)(path);
43 RETRY_CHK((unlink(CHAR_STAR_CAST path)), ret);
51 RETRY_CHK((shm_unlink(path)), ret);
73 __db_syserr(env, ret, "unlink: %s", path);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/os/
H A Dos_unlink.c20 __os_unlink(env, path, overwrite_test)
22 const char *path;
32 __db_msg(env, "fileops: unlink %s", path);
36 (void)__db_file_multi_write(env, path);
41 ret = DB_GLOBAL(j_unlink)(path);
43 RETRY_CHK((unlink(CHAR_STAR_CAST path)), ret);
51 RETRY_CHK((shm_unlink(path)), ret);
73 __db_syserr(env, ret, "unlink: %s", path);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source3/registry/
H A Dreg_backend_current_version.c40 char *path = NULL; local
43 path = talloc_strdup(ctx, key);
44 if (path == NULL) {
47 path = normalize_reg_path(ctx, path);
48 if (path == NULL) {
52 if (strncmp(path, KEY_CURRENT_VERSION_NORM, strlen(path)) != 0) {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/examples/libsmbclient/
H A Dtestread.c20 char path[2048]; local
31 *path = '\0';
32 fgets(path, sizeof(path) - 1, stdin);
33 if (strlen(path) == 0)
38 p = path + strlen(path) - 1;
44 if ((fd = smbc_open(path, O_RDONLY, 0)) < 0)
H A Dtestwrite.c20 char path[2048]; local
36 *path = '\0';
37 fgets(path, sizeof(path) - 1, stdin);
38 if (strlen(path) == 0)
43 p = path + strlen(path) - 1;
49 if ((fd = smbc_open(path, O_WRONLY | O_CREAT | O_TRUNC, 0)) < 0)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/lib/zlib/examples/
H A Dgzlog.h42 void *gzlog_open(char *path);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/os/
H A Dos_unlink.c20 __os_unlink(env, path, overwrite_test)
22 const char *path;
32 __db_msg(env, "fileops: unlink %s", path);
36 (void)__db_file_multi_write(env, path);
41 ret = DB_GLOBAL(j_unlink)(path);
43 RETRY_CHK((unlink(CHAR_STAR_CAST path)), ret);
51 RETRY_CHK((shm_unlink(path)), ret);
73 __db_syserr(env, ret, "unlink: %s", path);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source3/registry/
H A Dreg_backend_current_version.c40 char *path = NULL; local
43 path = talloc_strdup(ctx, key);
44 if (path == NULL) {
47 path = normalize_reg_path(ctx, path);
48 if (path == NULL) {
52 if (strncmp(path, KEY_CURRENT_VERSION_NORM, strlen(path)) != 0) {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source3/registry/
H A Dreg_backend_current_version.c40 char *path = NULL; local
43 path = talloc_strdup(ctx, key);
44 if (path == NULL) {
47 path = normalize_reg_path(ctx, path);
48 if (path == NULL) {
52 if (strncmp(path, KEY_CURRENT_VERSION_NORM, strlen(path)) != 0) {
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/examples/libsmbclient/
H A Dtestread.c20 char path[2048]; local
31 *path = '\0';
32 fgets(path, sizeof(path) - 1, stdin);
33 if (strlen(path) == 0)
38 p = path + strlen(path) - 1;
44 if ((fd = smbc_open(path, O_RDONLY, 0)) < 0)
H A Dtestwrite.c20 char path[2048]; local
36 *path = '\0';
37 fgets(path, sizeof(path) - 1, stdin);
38 if (strlen(path) == 0)
43 p = path + strlen(path) - 1;
49 if ((fd = smbc_open(path, O_WRONLY | O_CREAT | O_TRUNC, 0)) < 0)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/lib/zlib/examples/
H A Dgzlog.h42 void *gzlog_open(char *path);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/lib/smbconf/
H A Dsmbconf_txt.h31 const char *path);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/os_brew/
H A Dos_unlink.c18 __os_unlink(env, path, overwrite_test)
20 const char *path;
32 if (IFILEMGR_Remove(ifmp, path) == EFAILED)
33 FILE_MANAGER_ERR(env, ifmp, path, "IFILEMGR_Remove", ret);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/os_vxworks/
H A Dos_vx_rpath.c17 * Return the last path separator in the path or NULL if none found.
20 __db_rpath(path)
21 const char *path;
40 if ((dummy = iosDevFind(path, (const char**)&ptail)) == NULL)
41 s = path;

Completed in 218 milliseconds

1234567891011>>