Home
last modified time | relevance | path

Searched refs:chk (Results 1 – 7 of 7) sorted by relevance

/haiku/src/tools/translation/inspector/
H A DImageView.cpp189 StatusCheck chk; in SaveImageAtDropLocation() local
195 chk = pmsg->FindRef("directory", &dirref); in SaveImageAtDropLocation()
197 chk = pmsg->FindString("name", &filename); in SaveImageAtDropLocation()
201 chk = file.InitCheck(); in SaveImageAtDropLocation()
204 chk = proster->Translate(&stream, NULL, NULL, &file, B_TGA_FORMAT); in SaveImageAtDropLocation()
545 StatusCheck chk; in SetImage() local
549 chk = file.InitCheck(); in SetImage()
555 chk = B_ERROR; in SetImage()
562 chk = ioExtension.AddInt32("/documentIndex", fdocumentIndex); in SetImage()
563 chk = proster->Identify(&file, &ioExtension, &tinfo, 0, NULL, in SetImage()
[all …]
/haiku/src/libs/libsolv/ext/
H A Dtestcase.c1309 void *chk; in testcase_ruleid() local
1327 chk = solv_chksum_create(REPOKEY_TYPE_MD5); in testcase_ruleid()
1329 solv_chksum_add(chk, sq.str[i], strlen(sq.str[i]) + 1); in testcase_ruleid()
1330 md5 = solv_chksum_get(chk, &md5l); in testcase_ruleid()
1332 chk = solv_chksum_free(chk, 0); in testcase_ruleid()
1342 void *chk; in testcase_problemid() local
1355 chk = solv_chksum_create(REPOKEY_TYPE_MD5); in testcase_problemid()
1357 solv_chksum_add(chk, sq.str[i], strlen(sq.str[i]) + 1); in testcase_problemid()
1358 md5 = solv_chksum_get(chk, &md5l); in testcase_problemid()
1360 chk = solv_chksum_free(chk, 0); in testcase_problemid()
[all …]
/haiku/src/bin/network/traceroute/
H A Dtraceroute.c1559 struct sctp_chunkhdr *chk; in sctp_prep() local
1610 chk = (struct sctp_chunkhdr *)(sctp + 1); in sctp_prep()
1611 chk->chunk_type = SCTP_SHUTDOWN_ACK; in sctp_prep()
1612 chk->chunk_flags = 0; in sctp_prep()
1613 chk->chunk_length = htons(4); in sctp_prep()
1618 chk = chk + 1; in sctp_prep()
1619 chk->chunk_type = SCTP_PAD_CHUNK; in sctp_prep()
1620 chk->chunk_flags = 0; in sctp_prep()
1621 chk->chunk_length = htons(protlen - in sctp_prep()
/haiku/headers/private/drivers/
H A Data_types.h95 chk : 1,
/haiku/src/libs/libsolv/solv/
H A Drepo.c1274 const unsigned char *chk; in repo_lookup_bin_checksum() local
1282 chk = repodata_lookup_bin_checksum(data, entry, keyname, typep); in repo_lookup_bin_checksum()
1283 if (chk) in repo_lookup_bin_checksum()
1284 return chk; in repo_lookup_bin_checksum()
1295 const unsigned char *chk = repo_lookup_bin_checksum(repo, entry, keyname, typep); in repo_lookup_checksum() local
1296 return chk ? pool_bin2hex(repo->pool, chk, solv_chksum_len(*typep)) : 0; in repo_lookup_checksum()
H A Dsolvable.c264 const unsigned char *chk = solvable_lookup_bin_checksum(s, keyname, typep); in solvable_lookup_checksum() local
265 return chk ? pool_bin2hex(s->repo->pool, chk, solv_chksum_len(*typep)) : 0; in solvable_lookup_checksum()
H A Dpool.c2111 …const unsigned char *chk = repodata_lookup_bin_checksum(pool->pos.repo->repodata + pool->pos.repod… in pool_lookup_checksum() local
2112 … return chk ? repodata_chk2str(pool->pos.repo->repodata + pool->pos.repodataid, *typep, chk) : 0; in pool_lookup_checksum()