| /utopia/UTPA2-700.0.x/mxlib/msfs/ecos/ |
| H A D | MsFS.c | 140 static int (*punlink)(const char *path) = unlink; 141 static int (*pmkdir)(const char *path, mode_t mode) = mkdir; 142 static int (*prmdir)(const char *path) = rmdir; 146 static int (*pchdir)(const char *path) = chdir; 147 static int (*pstat)(const char *path, struct stat *buf) = stat; 164 punlink = (int(*)(const char *path)) wunlink; in MsFS_Init() 166 prmdir = (int(*)(const char *path)) wrmdir; in MsFS_Init() 234 int MsFS_Open( const char *path, int oflag, ... ) in MsFS_Open() argument 236 return popen( path, oflag ); in MsFS_Open() 248 int MsFS_Unlink( const char *path ) in MsFS_Unlink() argument [all …]
|
| /utopia/UTPA2-700.0.x/mxlib/msfs/linux/ |
| H A D | MsFS.c | 215 int MsFS_Open( const char *path, int oflag, ... ) in MsFS_Open() argument 220 …_MsFS_UnicodeStrToUTF8Str((const unsigned short *)path,(unsigned char *)u8path,MAX_FILENAME_LENGTH… in MsFS_Open() 223 return open( path, oflag ); in MsFS_Open() 235 int MsFS_Unlink( const char *path ) in MsFS_Unlink() argument 240 …_MsFS_UnicodeStrToUTF8Str((const unsigned short *)path,(unsigned char *)u8path,MAX_FILENAME_LENGTH… in MsFS_Unlink() 243 return unlink( path ); in MsFS_Unlink() 253 int MsFS_MkDir( const char *path, mode_t mode ) in MsFS_MkDir() argument 258 …_MsFS_UnicodeStrToUTF8Str((const unsigned short *)path,(unsigned char *)u8path,MAX_FILENAME_LENGTH… in MsFS_MkDir() 262 return mkdir( path, mode ); in MsFS_MkDir() 271 int MsFS_RmDir( const char *path ) in MsFS_RmDir() argument [all …]
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/aeon_include/ |
| H A D | process.h | 10 int execl(const char *path, const char *argv0, ...); 11 int execle(const char *path, const char *argv0, ... /*, char * const *envp */); 12 int execlp(const char *path, const char *argv0, ...); 13 int execlpe(const char *path, const char *argv0, ... /*, char * const *envp */); 15 int execv(const char *path, char * const *argv); 16 int execve(const char *path, char * const *argv, char * const *envp); 17 int execvp(const char *path, char * const *argv); 18 int execvpe(const char *path, char * const *argv, char * const *envp); 20 int spawnl(int mode, const char *path, const char *argv0, ...); 21 int spawnle(int mode, const char *path, const char *argv0, ... /*, char * const *envp */); [all …]
|
| /utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/linux/ |
| H A D | reiserfs_fs.h | 1172 #define pos_in_item(path) ((path)->pos_in_item) argument 1200 #define PATH_H_PPARENT(path, h) PATH_H_PBUFFER (path, (h) + 1) /* tb->F[h] or tb->S[0]->b_parent */ argument 1201 #define PATH_H_POSITION(path, h) PATH_OFFSET_POSITION (path, path->path_length - (h)) argument 1202 #define PATH_H_B_ITEM_ORDER(path, h) PATH_H_POSITION(path, h + 1) /* tb->S[h]->b_item_order */ argument 1206 #define get_last_bh(path) PATH_PLAST_BUFFER(path) argument 1207 #define get_ih(path) PATH_PITEM_HEAD(path) argument 1208 #define get_item_pos(path) PATH_LAST_POSITION(path) argument 1209 #define get_item(path) ((void *)B_N_PITEM(PATH_PLAST_BUFFER(path), PATH_LAST_POSITION (path))) argument 1210 #define item_moved(ih,path) comp_items(ih, path) argument 1211 #define path_changed(ih,path) comp_items (ih, path) argument [all …]
|
| H A D | coda.h | 670 int path; member 761 const char *path; member
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/ |
| H A D | gconf.c | 811 GtkTreePath *path = gtk_tree_path_new_from_string(path_string); in renderer_edited() local 817 if (!gtk_tree_model_get_iter(model2, &iter, path)) in renderer_edited() 830 gtk_tree_path_free(path); in renderer_edited() 894 GtkTreePath *path, *sel_path = NULL; in renderer_toggled() local 899 path = gtk_tree_path_new_from_string(path_string); in renderer_toggled() 900 if (!gtk_tree_model_get_iter(model2, &iter, path)) in renderer_toggled() 908 if (gtk_tree_path_compare(path, sel_path)) in renderer_toggled() 917 gtk_tree_path_free(path); in renderer_toggled() 942 GtkTreePath *path; in on_treeview2_button_press_event() local 953 gtk_tree_view_get_path_at_pos(view, tx, ty, &path, &column, &cx, in on_treeview2_button_press_event() [all …]
|
| H A D | confdata.c | 662 char path[PATH_MAX+1]; in conf_split_config() local 728 d = path; in conf_split_config() 736 fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0644); in conf_split_config() 746 d = path; in conf_split_config() 749 if (stat(path, &sb) && mkdir(path, 0755)) { in conf_split_config() 756 fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0644); in conf_split_config()
|
| /utopia/UTPA2-700.0.x/mxlib/include/ |
| H A D | MsFS.h | 149 int MsFS_Open( const char *path, int oflag, ... ); 150 int MsFS_Unlink( const char *path ); 151 int MsFS_MkDir( const char *path, mode_t mode ); 152 int MsFS_RmDir( const char *path ); 153 int MsFS_ChDir(const char *path); 156 int MsFS_Stat( const char *path, struct stat *buf ); 158 long MsFS_PathConf( const char *path, int name ); 160 int MsFS_Access( const char *path, int amode ); 203 MS_BOOL MApi_FS_Info(const char *path, MS_BOOL bUnicode, MApi_FsInfo* pFsInfo);
|
| /utopia/UTPA2-700.0.x/modules/dmx/api/dmx/ |
| H A D | Internal_DMX_debug.c | 490 char path[128] = {0x0}; in _DMX_DBG_Log() local 566 GET_PARAM_STR(param1, DMX_DBG_LOG_OPT_FILE, bFound, path); in _DMX_DBG_Log() 575 pfSEC = fopen(path, "wb"); in _DMX_DBG_Log() 578 dmx_dbg_print("[%s] open file %s failed\n", __FUNCTION__, path); in _DMX_DBG_Log() 583 dmx_dbg_print("dump section data to %s\n", path); in _DMX_DBG_Log() 1126 char path[128]; in _DMX_DBG_Misc() local 1148 GET_PARAM_STR(param1, DMX_DBG_MISC_OPT_FILE, bFile, path); in _DMX_DBG_Misc() 1274 pfile = fopen(path, "wb"); in _DMX_DBG_Misc() 1277 dmx_dbg_print("[%s] open file %s failed\n", __FUNCTION__, path); in _DMX_DBG_Misc() 1292 dmx_dbg_print("write %d bytes to file %s succeed\n", (int)u32Size, path); in _DMX_DBG_Misc() [all …]
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/dtc/ |
| H A D | livetree.c | 351 struct node *get_node_by_path(struct node *tree, const char *path) in get_node_by_path() argument 356 if (!path || ! (*path)) in get_node_by_path() 359 while (path[0] == '/') in get_node_by_path() 360 path++; in get_node_by_path() 362 p = strchr(path, '/'); in get_node_by_path() 365 if (p && strneq(path, child->name, p-path)) in get_node_by_path() 367 else if (!p && streq(path, child->name)) in get_node_by_path()
|
| H A D | util.c | 37 char *join_path(const char *path, const char *name) in join_path() argument 39 int lenp = strlen(path); in join_path() 46 if ((lenp > 0) && (path[lenp-1] == '/')) { in join_path() 52 memcpy(str, path, lenp); in join_path()
|
| H A D | srcpos.c | 28 static char *dirname(const char *path) in dirname() argument 30 const char *slash = strrchr(path, '/'); in dirname() 33 int len = slash - path; in dirname() 36 memcpy(dir, path, len); in dirname()
|
| H A D | checks.c | 459 char *path; in fixup_path_references() local 471 path = refnode->fullpath; in fixup_path_references() 472 prop->val = data_insert_at_marker(prop->val, m, path, in fixup_path_references() 473 strlen(path) + 1); in fixup_path_references()
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/ |
| H A D | headerdep.pl | 80 my $path = "$i/$filename"; 81 return $path if -f $path; 95 my $path = search($header); 96 next unless $path; 98 open(my $file, '<', $path) or die($!);
|
| H A D | get_maintainer.pl | 1146 foreach my $path (split(/:/, $ENV{PATH})) { 1147 if (-e "$path/$bin") { 1148 return "$path/$bin"; 1158 foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) { 1159 if (-e "$path/$conf") { 1160 return "$path/$conf";
|
| H A D | mkuboot.sh | 7 MKIMAGE=$(type -path "${CROSS_COMPILE}mkimage") 11 MKIMAGE=$(type -path mkimage)
|
| /utopia/UTPA2-700.0.x/projects/build/ |
| H A D | bspOneUtopia.dxyfile | 38 # base path where the generated documentation will be put. 39 # If a relative path is entered, it will be relative to the location 116 # path before files name in the file list and in the header files. If set 117 # to NO the shortest path that makes the file name unique will be used. 122 # can be used to strip a user-defined part of the path. Stripping is 124 # the path. The tag can be used to show relative paths in the file list. 126 # path to strip. 131 # the path mentioned in the documentation of a class, which tells 639 # against the file with absolute path, so to exclude all test directories 791 # If a relative path is entered the value of OUTPUT_DIRECTORY will be [all …]
|
| H A D | bsp.dxyfile | 37 # base path where the generated documentation will be put. 38 # If a relative path is entered, it will be relative to the location 115 # path before files name in the file list and in the header files. If set 116 # to NO the shortest path that makes the file name unique will be used. 121 # can be used to strip a user-defined part of the path. Stripping is 123 # the path. The tag can be used to show relative paths in the file list. 125 # path to strip. 130 # the path mentioned in the documentation of a class, which tells 638 # against the file with absolute path, so to exclude all test directories 790 # If a relative path is entered the value of OUTPUT_DIRECTORY will be [all …]
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/dtc/libfdt/ |
| H A D | fdt_ro.c | 129 int fdt_path_offset(const void *fdt, const char *path) in fdt_path_offset() argument 131 const char *end = path + strlen(path); in fdt_path_offset() 132 const char *p = path; in fdt_path_offset() 137 if (*path != '/') in fdt_path_offset()
|
| /utopia/UTPA2-700.0.x/modules/audio/drv/audio/ |
| H A D | drvAUDIO.c | 901 void MDrv_AUDIO_SetNormalPath(AUDIO_PATH_TYPE path, AUDIO_INPUT_TYPE input, AUDIO_OUTPUT_TYPE outpu… in MDrv_AUDIO_SetNormalPath() argument 903 HAL_AUDIO_SetNormalPath(path, input, output); in MDrv_AUDIO_SetNormalPath() 914 MS_U8 path; in MDrv_AUDIO_SetInputPath() local 916 path=(MS_U8)u8Path; in MDrv_AUDIO_SetInputPath() 927 HAL_AUDIO_WriteMaskByte((REG_AUDIO_MUTE_CTRL1+1) + (path-4)*2, 0x78, 0x00); in MDrv_AUDIO_SetInputPath() 931 HAL_AUDIO_WriteMaskByte((REG_AUDIO_MUTE_CTRL1+1) + (path-4)*2, 0x78, 0x78); in MDrv_AUDIO_SetInputPath() 935 HAL_AUDIO_WriteMaskByte((REG_AUDIO_MUTE_CTRL1+1) + (path-4)*2, 0x78, 0x70); in MDrv_AUDIO_SetInputPath()
|
| H A D | drvADVSOUND.c | 268 void MDrv_DBXTV_SetVolPath(AUDIO_OUTPUT_TYPE path){ in MDrv_DBXTV_SetVolPath() argument 269 Hal_DBXTV_SetVolPath(path); in MDrv_DBXTV_SetVolPath()
|
| /utopia/UTPA2-700.0.x/projects/build/scripts/rt-tester/ |
| H A D | t3-l1-pi-signal.tst | 60 # T1 lock L0, no wait in the wakeup path 66 # T2 lock L0 interruptible, no wait in the wakeup path
|
| /utopia/UTPA2-700.0.x/modules/msos/utopia_adaption/utopia/ |
| H A D | utopia_dev.c | 734 struct path path; in init_procfs_msg() local 747 error=kern_path("/proc/utopia_mdb",LOOKUP_FOLLOW, &path); in init_procfs_msg()
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/manhattan/audio/ |
| H A D | halAUDIO.c | 2633 MS_U8 u8input_src, u8input_idx, u8temp, path; in HAL_AUDIO_SetInputPath() local 2663 path=(MS_U8)u8Path; in HAL_AUDIO_SetInputPath() 2676 if( path >= (sizeof(u32PathArray)/sizeof(u32PathArray[0]))) in HAL_AUDIO_SetInputPath() 2682 u32path_reg = u32PathArray[path]; in HAL_AUDIO_SetInputPath() 2786 MS_U8 path; in HAL_AUDIO_SetInternalPath() local 2793 path = (MS_U8)u8Path; in HAL_AUDIO_SetInternalPath() 2809 HAL_AUDIO_WriteMaskByte(M2S_MBOX_INPUT_MUX_SEL1, 0x0F, path); in HAL_AUDIO_SetInternalPath() 2814 HAL_AUDIO_WriteMaskByte(M2S_MBOX_INPUT_MUX_SEL1, 0xF0, (path<<4)); in HAL_AUDIO_SetInternalPath() 2818 HAL_AUDIO_WriteMaskByte(M2S_MBOX_INPUT_MUX_SEL1+1, 0x0F, path); in HAL_AUDIO_SetInternalPath() 2822 HAL_AUDIO_WriteMaskByte(M2S_MBOX_INPUT_MUX_SEL1+1, 0xF0, (path<<4)); in HAL_AUDIO_SetInternalPath() [all …]
|
| /utopia/UTPA2-700.0.x/modules/audio/hal/mooney/audio/ |
| H A D | halADVAUDIO.c | 2488 void Hal_DBXTV_SetVolPath(AUDIO_OUTPUT_TYPE path){ in Hal_DBXTV_SetVolPath() argument 2490 DBX_PATH = path; in Hal_DBXTV_SetVolPath() 2492 path = path; in Hal_DBXTV_SetVolPath()
|