Searched defs:name (Results 1 - 25 of 7863) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jar ... .google.zxing.BarcodeFormat UPC_EAN_EXTENSION private final String name private void " href="/5.1.0_r1/s? ...
/external/yaffs2/yaffs2/direct/
H A Ddtest.c703 // Create a file with a long name
705 copy_in_a_file("/boot/file with a long name","xxx");
712 r = yaffs_stat("/boot/file with a long name",&ystat);
716 r = yaffs_rename("/boot/file with a long name","/boot/r1");
737 copy_in_a_file("/boot/directory1/file with a long name","xxx");
754 r = yaffs_unlink("/boot/directory1/file with a long name");
879 char name[100]; local
H A Dyaffs_fileem2k.c77 char name[40]; local
78 NToName(name,n);
82 h = open(name, O_RDWR | O_CREAT, S_IREAD | S_IWRITE);
H A Dyaffsfs.c177 (!*leftOver || *leftOver == '/') && // no more in this path name part
226 // Parse a path to determine the directory and the name within the directory.
228 // eg. "/data/xx/ff" --> puts name="ff" and returns the directory "/data/xx"
229 static yaffs_Object *yaffsfs_DoFindDirectory(yaffs_Object *startDir,const char *path,char **name,int symDepth) argument
261 *name = restOfPath;
312 static yaffs_Object *yaffsfs_FindDirectory(yaffs_Object *relativeDirectory,const char *path,char **name,int symDepth) argument
314 return yaffsfs_DoFindDirectory(relativeDirectory,path,name,symDepth);
322 char *name; local
324 dir = yaffsfs_FindDirectory(relativeDirectory,path,&name,symDepth);
326 if(dir && *name)
340 char *name; local
709 char *name; local
1003 char *name; local
1181 char name[NAME_MAX+1]; /* name of directory being searched */ member in struct:__anon34307
1356 char *name; local
[all...]
/external/yaffs2/yaffs2/utils/
H A Dmkyaffs2image.c156 // name = skip. Char array. Not swapped.
258 static int write_object_header(int objId, yaffs_ObjectType t, struct stat *s, int parent, const char *name, int equivalentObj, const char * alias, const char *secontext) argument
280 strncpy(oh->name,name,YAFFS_MAX_NAME_LENGTH);
H A Dmkyaffsimage.c119 static __u16 yaffs_CalcNameSum(const char *name) argument
124 __u8 *bname = (__u8 *)name;
279 // name = skip. Char array. Not swapped.
331 static int write_object_header(int objId, yaffs_ObjectType t, struct stat *s, int parent, const char *name, int equivalentObj, const char * alias) argument
344 strncpy(oh->name,name,YAFFS_MAX_NAME_LENGTH);
/external/yaffs2/yaffs2/
H A Dyaffs_fs.c334 yaffs_InodeToObject(dir)->objectId, dentry->d_name.name));
338 dentry->d_name.name);
866 char name[YAFFS_MAX_NAME_LENGTH + 1]; local
917 yaffs_GetObjectName(l, name,
920 (KERN_DEBUG "yaffs_readdir: %s inode %d\n", name,
924 name,
925 strlen(name),
983 dentry->d_name.name, mode, rdev));
996 yaffs_MknodSpecial(parent, dentry->d_name.name, mode, uid,
1000 yaffs_MknodSpecial(parent, dentry->d_name.name, mod
[all...]
H A Dyaffs_guts.c72 static int yaffs_UpdateObjectHeader(yaffs_Object * in, const YCHAR * name,
552 static __u16 yaffs_CalcNameSum(const YCHAR * name) argument
557 YUCHAR *bname = (YUCHAR *) name;
573 static void yaffs_SetObjectName(yaffs_Object * obj, const YCHAR * name) argument
576 if (name && yaffs_strlen(name) <= YAFFS_SHORT_NAME_LENGTH) {
577 yaffs_strcpy(obj->shortName, name);
582 obj->sum = yaffs_CalcNameSum(name);
1688 const YCHAR * name,
1700 if (yaffs_FindObjectByName(parent, name)) {
1686 yaffs_MknodObject(yaffs_ObjectType type, yaffs_Object * parent, const YCHAR * name, __u32 mode, __u32 uid, __u32 gid, yaffs_Object * equivalentObject, const YCHAR * aliasString, __u32 rdev) argument
1765 yaffs_MknodFile(yaffs_Object * parent, const YCHAR * name, __u32 mode, __u32 uid, __u32 gid) argument
1772 yaffs_MknodDirectory(yaffs_Object * parent, const YCHAR * name, __u32 mode, __u32 uid, __u32 gid) argument
1779 yaffs_MknodSpecial(yaffs_Object * parent, const YCHAR * name, __u32 mode, __u32 uid, __u32 gid, __u32 rdev) argument
1786 yaffs_MknodSymLink(yaffs_Object * parent, const YCHAR * name, __u32 mode, __u32 uid, __u32 gid, const YCHAR * alias) argument
1795 yaffs_Link(yaffs_Object * parent, const YCHAR * name, yaffs_Object * equivalentObject) argument
2988 yaffs_UpdateObjectHeader(yaffs_Object * in, const YCHAR * name, int force, int isShrink, int shadows) argument
4503 YCHAR name[YAFFS_MAX_NAME_LENGTH + 1]; local
4552 yaffs_Unlink(yaffs_Object * dir, const YCHAR * name) argument
5881 yaffs_FindObjectByName(yaffs_Object * directory, const YCHAR * name) argument
5990 yaffs_GetObjectName(yaffs_Object * obj, YCHAR * name, int buffSize) argument
[all...]
H A Dyaffs_guts.h298 __u16 sum__NoLongerUsed; /* checksum of name. No longer used */
299 YCHAR name[YAFFS_MAX_NAME_LENGTH + 1]; member in struct:__anon34324
418 __u16 sum; /* sum of the name to speed searching */
527 const char *name; member in struct:yaffs_DeviceStruct
814 int yaffs_Unlink(yaffs_Object * dir, const YCHAR * name);
817 int yaffs_GetObjectName(yaffs_Object * obj, YCHAR * name, int buffSize);
833 yaffs_Object *yaffs_MknodFile(yaffs_Object * parent, const YCHAR * name,
844 yaffs_Object *yaffs_MknodDirectory(yaffs_Object * parent, const YCHAR * name,
846 yaffs_Object *yaffs_FindObjectByName(yaffs_Object * theDir, const YCHAR * name);
853 yaffs_Object *yaffs_Link(yaffs_Object * parent, const YCHAR * name,
[all...]
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DGZipStream.cs21 private static extern IntPtr gzopen(string name, string mode); argument
50 /// <param name="fileName">The name of the compressed file to create</param>
51 /// <param name="level">The compression level to use when adding data</param>
64 /// <param name="fileName">The name of the file to open</param>
145 /// <param name="buffer">The destination data buffer</param>
146 /// <param name="offset">The index of the first destination byte in <c>buffer</c></param>
147 /// <param name="count">The number of bytes requested</param>
191 /// <param name
[all...]
/external/zlib/src/contrib/iostream/
H A Dzfstream.cpp18 gzfilebuf *gzfilebuf::open( const char *name, argument
51 if ( (file = gzopen(name, char_mode)) == NULL )
270 void gzfilestream_common::open( const char *name, int io_mode ) { argument
272 if ( !buffer.open( name, io_mode ) )
297 gzifstream::gzifstream( const char *name, int io_mode ) : argument
300 gzfilestream_common::open( name, io_mode );
317 gzofstream::gzofstream( const char *name, int io_mode ) : argument
320 gzfilestream_common::open( name, io_mode );
/external/zlib/src/contrib/iostream2/
H A Dzstream.h56 izstream(const char* name) : m_fp(0) { open(name); } argument
65 void open(const char* name) { argument
67 m_fp = ::gzopen(name, "rb");
164 ozstream(const char* name, int level = Z_DEFAULT_COMPRESSION) argument
166 open(name, level);
177 void open(const char* name, int level = Z_DEFAULT_COMPRESSION) { argument
181 m_fp = ::gzopen(name, mode);
/external/zlib/src/contrib/iostream3/
H A Dzfstream.cc51 gzfilebuf::open(const char *name, argument
67 if ((file = gzopen(name, char_mode)) == NULL)
379 gzifstream::gzifstream(const char* name, argument
384 this->open(name, mode);
398 gzifstream::open(const char* name, argument
401 if (!sb.open(name, mode | std::ios_base::in))
434 gzofstream::gzofstream(const char* name, argument
439 this->open(name, mode);
453 gzofstream::open(const char* name, argument
456 if (!sb.open(name, mod
[all...]
/external/zlib/src/contrib/minizip/
H A Dminizip.c75 char *f; /* name of file to get info on */
99 char *f; /* name of file to get info on */
110 char name[MAXFILENAME+1]; local
115 strncpy(name, f,MAXFILENAME-1);
117 name[ MAXFILENAME ] = '\0';
119 if (name[len - 1] == '/')
120 name[len - 1] = '\0';
122 if (stat(name,&s)==0)
141 char *f; /* name of file to get info on */
180 " -j exclude path. store only the file name
[all...]
/external/zlib/src/contrib/puff/
H A Dpufftest.c54 /* Read the input file *name, or stdin if name is NULL, into allocated memory.
60 local void *load(const char *name, size_t *len) argument
70 in = name == NULL ? stdin : fopen(name, "rb");
92 char *arg, *name = NULL; local
111 else if (name != NULL) {
112 fprintf(stderr, "only one file name allowed\n");
116 name = arg;
117 source = load(name,
[all...]
/external/zlib/src/contrib/untgz/
H A Duntgz.c55 #define GNUTYPE_LONGLINK 'K' /* long link name */
56 #define GNUTYPE_LONGNAME 'L' /* long file name */
58 #define GNUTYPE_NAMES 'N' /* file name that does not fit into main hdr */
70 char name[100]; /* 0 */ member in struct:tar_header
129 /* return the file name of the TGZ archive */
427 if (len == 0 || buffer.header.name[0] == 0)
434 buffer.header.name[0] = 0;
440 strncpy(fname,buffer.header.name,SHORTNAMESIZE);
447 * The file name is longer than SHORTNAMESIZE
449 if (strncmp(fname,buffer.header.name,SHORTNAMESIZ
[all...]
/external/zlib/src/examples/
H A Dgzappend.c176 char *name; /* file name for error messages */ member in struct:__anon34352
185 if (len == -1) bye("error reading ", in->name);
194 if (readin(in) == 0) bye("unexpected end of ", in->name);
211 bye("seeking ", in->name);
216 bye("unexpected end of ", in->name);
240 if (read1(in) != 31 || read1(in) != 139) bye(in->name, " not a gzip file");
241 if (read1(in) != 8) bye("unknown compression method in", in->name);
243 if (flags & 0xe0) bye("unknown header flags set in", in->name);
255 /* decompress gzip file "name", retur
259 gzscan(char *name, z_stream *strm, int level) argument
388 gztack(char *name, int gd, z_stream *strm, int last) argument
[all...]
H A Dgzjoin.c49 has a minimal ten-byte gzip header with no file name or modification time.
79 char *name; /* name of file for error messages */ member in struct:__anon34353
100 local bin *bopen(char *name) argument
108 in->fd = open(name, O_RDONLY, 0);
115 in->name = name;
142 bail("unexpected end of file on ", in->name))
184 bail("unexpected end of file on ", in->name);
196 bail("unexpected end of file on ", in->name);
279 gzcopy(char *name, int clr, unsigned long *crc, unsigned long *tot, FILE *out) argument
[all...]
/external/zlib/src/
H A Dzlib.h120 Bytef *name; /* pointer to zero-terminated file name or Z_NULL */ member in struct:gz_header_s
121 uInt name_max; /* space at name (only when reading header) */
554 file name, no extra data, no comment, no modification time (set to zero), no
751 deflate(). The text, time, os, extra field, name, and comment information
754 caller must assure that, if not Z_NULL, name and comment are terminated with
762 the time set to zero, and os set to 255, with no extra, name, or comment
982 If name is not Z_NULL, then up to name_max characters are written there,
986 of extra, name, or comment are not Z_NULL and the respective field is not
/external/zlib/
H A Dzlib.h120 Bytef *name; /* pointer to zero-terminated file name or Z_NULL */ member in struct:gz_header_s
121 uInt name_max; /* space at name (only when reading header) */
554 file name, no extra data, no comment, no modification time (set to zero), no
751 deflate(). The text, time, os, extra field, name, and comment information
754 caller must assure that, if not Z_NULL, name and comment are terminated with
762 the time set to zero, and os set to 255, with no extra, name, or comment
982 If name is not Z_NULL, then up to name_max characters are written there,
986 of extra, name, or comment are not Z_NULL and the respective field is not
/external/zopfli/src/zopflipng/
H A Dzopflipng_bin.cc180 std::string name = arg.substr(0, eq); local
183 if (name == "--always_zopflify") {
185 } else if (name == "--lossy_transparent") {
187 } else if (name == "--lossy_8bit") {
189 } else if (name == "--iterations") {
193 } else if (name == "--splitting") {
196 } else if (name == "--filters") {
219 } else if (name == "--keepchunks") {
231 } else if (name == "--prefix") {
234 } else if (name
[all...]
/external/webrtc/src/modules/audio_processing/test/testsupport/
H A Dfileutils.cc118 std::string ResourcePath(std::string name, std::string extension) { argument
135 std::string resource_file = resources_path + name + "_" + platform + "_" +
141 resource_file = resources_path + name + "_" + platform + "." + extension;
146 resource_file = resources_path + name + "_" + architecture + "." + extension;
150 // Fall back on name without architecture or platform.
151 return resources_path + name + "." + extension;
/external/webrtc/test/testsupport/
H A Dfileutils.cc118 std::string ResourcePath(std::string name, std::string extension) { argument
135 std::string resource_file = resources_path + name + "_" + platform + "_" +
141 resource_file = resources_path + name + "_" + platform + "." + extension;
146 resource_file = resources_path + name + "_" + architecture + "." + extension;
150 // Fall back on name without architecture or platform.
151 return resources_path + name + "." + extension;
/external/wpa_supplicant_8/hostapd/
H A Dconfig_file.c869 static int hostapd_config_tx_queue(struct hostapd_config *conf, char *name, argument
877 pos = name + 9;
884 wpa_printf(MSG_INFO, "DEPRECATED: '%s' not used", name);
887 wpa_printf(MSG_ERROR, "Unknown tx_queue name '%s'", pos);
893 wpa_printf(MSG_INFO, "DEPRECATED: '%s' not used", name);
1229 os_memcpy(ls->name, sep, nlen);
1662 os_memcpy(icon->name, pos, end - pos);
1857 if (os_strcmp(pos, wpa_drivers[j]->name) == 0) {
2380 wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d (from group name '%s')",
2385 /* Group name no
[all...]
H A Dhlr_auc_gw.c110 static int db_table_exists(sqlite3 *db, const char *name) argument
113 os_snprintf(cmd, sizeof(cmd), "SELECT 1 FROM %s;", name);

Completed in 1761 milliseconds

1234567891011>>