Home
last modified time | relevance | path

Searched refs:longname (Results 1 – 25 of 36) sorted by relevance

12

/external/python/cpython2/Tools/bgen/bgen/
DbgenModule.py11 longname = None): argument
14 if longname:
15 self.longname = longname
17 self.longname = name
27 od.setmodulename(self.longname)
/external/python/cpython2/Mac/Modules/res/
Dresedit.py67 def genresconverter(longname, shortname): argument
69 f = ManualGenerator("as_%s"%longname, as_xxx_body%(shortname, longname))
70 docstring = "Return this resource/handle as a %s"%longname
/external/linux-kselftest/tools/testing/selftests/exec/
Dexecveat.c156 char longname[XX_DIR_LEN + 1]; in check_execveat_pathmax() local
170 memset(longname, 'x', XX_DIR_LEN - 1); in check_execveat_pathmax()
171 longname[XX_DIR_LEN - 1] = '/'; in check_execveat_pathmax()
172 longname[XX_DIR_LEN] = '\0'; in check_execveat_pathmax()
175 strcat(longpath, longname); in check_execveat_pathmax()
181 memset(longname, 'y', len); in check_execveat_pathmax()
182 longname[len] = '\0'; in check_execveat_pathmax()
183 strcat(longpath, longname); in check_execveat_pathmax()
/external/adhd/cras/src/alsa_plugin/
Dctl_cras.c336 strncpy(cras->ext_ctl.longname, "CRAS", in SND_CTL_PLUGIN_DEFINE_FUNC()
337 sizeof(cras->ext_ctl.longname) - 1); in SND_CTL_PLUGIN_DEFINE_FUNC()
338 cras->ext_ctl.longname[sizeof(cras->ext_ctl.longname) - 1] = '\0'; in SND_CTL_PLUGIN_DEFINE_FUNC()
/external/python/cpython3/Lib/test/
Dtest_reprlib.py224 longname = 'areallylongpackageandmodulenametotestreprtruncation' variable in LongReprTest
227 self.pkgname = os.path.join(self.longname)
228 self.subpkgname = os.path.join(self.longname, self.longname)
262 source_path_len += 2 * (len(self.longname) + 1)
Dtest_tarfile.py898 longname = self.subdir + "/" + "123/" * 125 + "longname"
900 tarinfo = self.tar.getmember(longname)
907 longname = self.subdir + "/" + "123/" * 125 + "longname"
913 self.assertEqual(tarinfo.linkname, longname, "linkname wrong")
916 longname = self.subdir + "/" + "123/" * 125 + "longname"
917 tarinfo = self.tar.getmember(longname)
927 longname = self.subdir + "/" + "123/" * 125 + "longname"
928 offset = self.tar.getmember(longname).offset
Dtest_curses.py230 curses.isendwin, curses.killchar, curses.longname,
Dtest_configparser.py1356 longname = 'yeah, sections can be indented as well'
1357 self.assertFalse(cf.getboolean(longname, 'are they subsections'))
1358 self.assertEqual(cf.get(longname, 'lets use some Unicode'), '片仮名')
/external/toybox/toys/pending/
Dtar.c584 char *longname = NULL, *longlink = NULL; in unpack_tar() local
684 free(longname); in unpack_tar()
685 longname = xzalloc(file_hdr->size +1); in unpack_tar()
686 xread(tar_hdl->src_fd, longname, file_hdr->size); in unpack_tar()
698 free(longname); in unpack_tar()
699 longname = process_extended_hdr(tar_hdl, file_hdr->size); in unpack_tar()
704 if (longname) { in unpack_tar()
706 file_hdr->name = longname; in unpack_tar()
707 longname = NULL; in unpack_tar()
/external/python/cpython2/Lib/test/
Dtest_repr.py224 longname = 'areallylongpackageandmodulenametotestreprtruncation'
225 self.pkgname = os.path.join(longname)
226 self.subpkgname = os.path.join(longname, longname)
Dtest_tarfile.py691 longname = self.subdir + "/" + "123/" * 125 + "longname"
693 tarinfo = self.tar.getmember(longname)
699 longname = self.subdir + "/" + "123/" * 125 + "longname"
705 self.assertTrue(tarinfo.linkname == longname, "linkname wrong")
708 longname = self.subdir + "/" + "123/" * 125 + "longname"
709 tarinfo = self.tar.getmember(longname)
718 longname = self.subdir + "/" + "123/" * 125 + "longname"
719 offset = self.tar.getmember(longname).offset
Dtest_curses.py220 curses.isendwin, curses.killchar, curses.longname,
Dtest_ssl.py625 self.assertEqual(val.longname, 'TLS Web Server Authentication')
644 self.assertIsInstance(obj.longname, str)
/external/openssh/
Dsftp-client.c603 char *filename, *longname; in do_lsreaddir() local
608 (r = sshbuf_get_cstring(msg, &longname, in do_lsreaddir()
616 free(longname); in do_lsreaddir()
622 mprintf("%s\n", longname); in do_lsreaddir()
636 (*dir)[ents]->longname = xstrdup(longname); in do_lsreaddir()
641 free(longname); in do_lsreaddir()
679 free(s[i]->longname); in free_sftp_dirents()
820 char *filename, *longname; in do_realpath() local
858 (r = sshbuf_get_cstring(msg, &longname, NULL)) != 0 || in do_realpath()
865 free(longname); in do_realpath()
[all …]
Dsftp-client.h34 char *longname; member
Dsftp.c862 mprintf("%s\n", d[n]->longname); in do_ls_dir()
/external/scapy/scapy/layers/
Dmgcp.py18 longname = "Media Gateway Control Protocol" variable in MGCP
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/PDB/
Dpdb-longname-truncation.test3 ; RUN: llvm-pdbutil yaml2pdb -pdb=%t.pdb %p/Inputs/longname-truncation.yaml
/external/toolchain-utils/go/patch/
Dgo2.patch34 func compileFile(runcmd runCmd, longname string, flags []string) (out []byte, err error) {
41 cmd = append(cmd, longname)
/external/python/cpython2/Mac/Modules/file/
Dfilesupport.py807 longname=LONGMODNAME)
/external/curl/tests/python_dependencies/impacket/
Dsmb.py553 def __init__(self, ctime, atime, mtime, filesize, allocsize, attribs, shortname, longname): argument
565 self.__longname = longname[:string.index(longname, '\0')]
567 self.__longname = longname
/external/libgsm/src/
Dtoast.c54 char * name, * longname, * suffix; member
/external/kernel-headers/original/uapi/sound/
Dasound.h832 unsigned char longname[80]; /* name + info text about soundcard */ member
/external/curl/lib/
Dssh-libssh.c1300 sshc->readdir_longentry = sshc->readdir_attrs->longname; in myssh_statemach_act()
1400 sshc->readdir_longentry = sshc->readdir_link_attrs->longname; in myssh_statemach_act()
/external/python/cpython2/Doc/library/
Dtarfile.rst29 * read/write support for the GNU tar format including *longname* and *longlink*

12