Searched refs:strlen (Results 1 - 25 of 823) sorted by relevance

1234567891011>>

/haiku/src/system/libroot/posix/string/
H A Dstrlcpy.c16 return strlen(src);
24 return i + strlen(src + i);
H A Dstrlcat.c25 return destLength + strlen(source);
36 return destLength + i + strlen(source + i);
H A Dstrstr.c16 s2len = strlen(s2);
H A Dstrdup.cpp22 length = strlen(string) + 1;
H A Dstrlen.cpp17 strlen(const char* string) function
/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DAPELink.cpp65 if ((_strnicmp(pHeader, APE_LINK_HEADER, strlen(APE_LINK_HEADER)) == 0) &&
66 (_strnicmp(pImageFile, APE_LINK_IMAGE_FILE_TAG, strlen(APE_LINK_IMAGE_FILE_TAG)) == 0) &&
67 (_strnicmp(pStartBlock, APE_LINK_START_BLOCK_TAG, strlen(APE_LINK_START_BLOCK_TAG)) == 0) &&
68 (_strnicmp(pFinishBlock, APE_LINK_FINISH_BLOCK_TAG, strlen(APE_LINK_FINISH_BLOCK_TAG)) == 0))
71 m_nStartBlock = atoi(&pStartBlock[strlen(APE_LINK_START_BLOCK_TAG)]);
72 m_nFinishBlock = atoi(&pFinishBlock[strlen(APE_LINK_FINISH_BLOCK_TAG)]);
76 char * pImageCharacter = &pImageFile[strlen(APE_LINK_IMAGE_FILE_TAG)];
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/utilities/
H A Dutnonansi.c302 if (strlen (Source) >= DestSize)
318 if ((strlen (Dest) + strlen (Source)) >= DestSize)
337 ActualTransferLength = ACPI_MIN (MaxTransferLength, strlen (Source));
339 if ((strlen (Dest) + ActualTransferLength) >= DestSize)
/haiku/src/add-ons/input_server/methods/pen/
H A DDumpMessage.cpp28 if (prefix) stream.Write(prefix, strlen(prefix));
30 stream.Write(buffer, strlen(buffer));
37 sprintf(buffer+strlen(buffer), " ");
38 stream.Write(buffer, strlen(buffer));
41 stream.Write(buffer, strlen(buffer));
53 stream.Write(buffer, strlen(buffer));
83 stream.Write(msg_header_comment, strlen(msg_header_comment));
103 stream.Write(buffer, strlen(buffer));
118 stream.Write(easy_name, strlen(easy_name));
124 stream.Write(field_name, strlen(field_nam
[all...]
/haiku/src/tools/fs_shell/
H A Dpath_util.cpp20 int len = strlen(path);
55 int dirLen = strlen(dir);
56 int entryLen = strlen(entry);
/haiku/src/system/libroot/posix/
H A Dlibgen.cpp19 size_t length = strlen(filepath);
44 size_t length = strlen(filepath);
/haiku/src/system/libroot/posix/musl/misc/
H A Dgetsubopt.c12 else *opt = s + strlen(s);
15 size_t l = strlen(keys[i]);
/haiku/src/bin/
H A Dboot_process_done.cpp30 (void *)"system boot", strlen("system boot"));
/haiku/src/system/libroot/os/
H A Dfs_volume.c18 parameters ? strlen(parameters) : 0);
/haiku/src/system/libroot/posix/glibc/libio/
H A Diofputs_u.c37 _IO_size_t len = strlen (str);
H A Dioputs.c38 _IO_size_t len = strlen(str);
/haiku/src/system/libroot/posix/glibc/locale/
H A Doutdigits.h38 dlen = strlen (outdigit);
/haiku/src/add-ons/kernel/busses/scsi/usb/
H A Dtracing.c164 buf_ptr += strlen(prefix);
171 buf_ptr += strlen(buf_ptr);
180 buf_ptr += strlen(buf_ptr);
186 if(B_OK != write_port_etc(pid, 0, buf, strlen(buf), B_TIMEOUT, 0))
305 char *pbuf = (char *)malloc(len * 3 + sizeof(truncTail) + strlen(prefix) + 1);
310 p += strlen(prefix);
313 p += strlen(p);
329 size_t len = strlen(prefix) + strlen(sgbHead) + sgb->count * 9;
336 p += strlen(
[all...]
/haiku/src/apps/poorman/libhttpd/
H A Dmatch.c46 return match_one( pattern, strlen( pattern ), string );
71 i = strlen( string );
/haiku/src/add-ons/kernel/file_systems/shared/
H A Dmime_ext_table.c136 namelen = strlen(filename);
139 ext_len = strlen(p->extension);
/haiku/src/system/libnetwork/netresolv/dst/
H A Dsupport.c63 b = strlen(*buf); /*%< get length of strings */
64 s = strlen(str);
252 return (1 + strlen(name) + 6 + strlen(suffix));
280 if (filename_length < 1 + strlen(name) + 4 + 6 + 1 + strlen(suffix))
312 if (strlen(filename) + strlen(dst_path) >= sizeof(pathname))
/haiku/src/tests/kits/shared/
H A DChecksumJsonEventListener.cpp35 _ChecksumProcessCharacters(content, strlen(content));
42 _ChecksumProcessCharacters(content, strlen(content));
/haiku/src/add-ons/kernel/drivers/audio/ac97/sis7018/
H A DSettings.cpp83 buf_ptr += strlen(prefix);
92 buf_ptr += strlen(buf_ptr);
97 buf_ptr += strlen(buf_ptr);
112 write(fd, buffer, strlen(buffer));
/haiku/src/add-ons/kernel/drivers/audio/usb/
H A DSettings.cpp84 buf_ptr += strlen(prefix);
93 buf_ptr += strlen(buf_ptr);
98 buf_ptr += strlen(buf_ptr);
113 write(fd, buffer, strlen(buffer));
/haiku/src/add-ons/kernel/drivers/network/ether/usb_asix/
H A DSettings.cpp92 buf_ptr += strlen(prefix);
101 buf_ptr += strlen(buf_ptr);
106 buf_ptr += strlen(buf_ptr);
121 write(fd, buffer, strlen(buffer));
/haiku/src/apps/icon-o-matic/import_export/flat_icon/
H A DSourceExporter.cpp50 size_t size = strlen(buffer);
70 size = strlen(buffer);
90 size = strlen(buffer);
104 size = strlen(buffer);

Completed in 309 milliseconds

1234567891011>>