Searched refs:thislen (Results 1 - 4 of 4) sorted by relevance

/external/e2fsprogs/debugfs/
H A Dls.c60 int thislen; variable
63 thislen = ((dirent->name_len & 0xFF) < EXT2_NAME_LEN) ?
65 strncpy(name, dirent->name, thislen);
66 name[thislen] = '\0';
111 thislen = strlen(tmp);
113 if (ls->col + thislen > 80) {
118 ls->col += thislen;
H A Dhtree.c38 int thislen, col = 0; local
84 thislen = ((dirent->name_len & 0xFF) < EXT2_NAME_LEN) ?
86 strncpy(name, dirent->name, thislen);
87 name[thislen] = '\0';
89 thislen, fs->super->s_hash_seed,
96 thislen = strlen(tmp);
97 if (col + thislen > 80) {
102 col += thislen;
H A Ddump.c297 int thislen; local
301 thislen = ((dirent->name_len & 0xFF) < EXT2_NAME_LEN
303 strncpy(name, dirent->name, thislen);
304 name[thislen] = 0;
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
H A DChannelManager.java397 int thislen = 0;
425 thislen = (c.remoteWindow >= len) ? len : (int) c.remoteWindow;
436 if (thislen > estimatedMaxDataLen)
437 thislen = estimatedMaxDataLen;
439 c.remoteWindow -= thislen;
441 msg = new byte[1 + 8 + thislen];
448 msg[5] = (byte) (thislen >> 24);
449 msg[6] = (byte) (thislen >> 16);
450 msg[7] = (byte) (thislen >> 8);
451 msg[8] = (byte) (thislen);
[all...]

Completed in 163 milliseconds