Searched refs:names (Results 26 - 38 of 38) sorted by relevance

12

/haiku/src/add-ons/kernel/drivers/disk/virtual/nbd/
H A Dnbd.c35 /* names, ohh names... */
806 char **names = nbd_name; local
856 *(names) = malloc(DEVICE_NAME_MAX);
857 if (*(names) == NULL)
859 sprintf(*(names++), DEVICE_FMT, i);
864 *names = NULL;
/haiku/src/preferences/repositories/
H A DRepositoriesView.cpp297 BStringList names; local
303 if (names.HasString(rowItem->Name())
314 names.Add(rowItem->Name());
596 B_TRANSLATE_COMMENT("Repositories could not retrieve the names of "
668 // Find repository names that are duplicated
/haiku/src/tools/fs_shell/
H A Dfssh.cpp193 char* names = _names; local
194 strcpy(names, command->Name());
197 while (char* name = strtok_r(names, " /", &cookie)) {
199 names = NULL;
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DRadeon.cpp379 const char* names[] = { local
396 while(names[i]) {
397 PRINT((names[i], fMMTable[i]));
/haiku/src/apps/poorman/libhttpd/
H A Dlibhttpd.c2728 /*static*/char* names = NULL; local
2839 /* Read in names. */
2848 names = NEW( char, maxnames * ( MAXPATHLEN + 1 ) );
2854 names = RENEW( names, char, maxnames * ( MAXPATHLEN + 1 ) );
2857 if ( names == (char*) 0 || nameptrs == (char**) 0 )
2859 // syslog( LOG_ERR, "out of memory reallocating directory names" );
2864 nameptrs[i] = &names[i * ( MAXPATHLEN + 1 )];
2873 /* Sort the names. */
3009 free(names);
[all...]
/haiku/src/add-ons/kernel/drivers/audio/emuxki/
H A Demuxki.c31 * 4. Neither the name of The NetBSD Foundation nor the names of its
81 char * names[NUM_CARDS*20+1]; variable
2119 names[num_names++] = card->midi.name;
2123 // names[num_names++] = card->joy.name1;
2126 names[num_names++] = card->name;
2128 names[num_names] = NULL;
3076 for (ix=0; names[ix]; ix++) {
3077 PRINT(("publish %s\n", names[ix]));
3079 return (const char **)names;
/haiku/src/libs/iconv/
H A Diconv.c532 /* Compare alphabetically, but put "CS" names at the end. */
542 const char * const * names,
606 * Table of canonical names of encodings.
541 iconvlist(int (*do_one) (unsigned int namescount, const char * const * names, void* data), void* data) argument
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DRequests.h910 visitor->Visit(this, names);
914 RequestMemberArray<StringData> names; member in struct:MultiWalkRequest
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DClientConnection.cpp1842 StringData* names = request->names.GetElements(); local
1843 int32 count = request->names.CountElements();
1847 if (volume->LoadEntry(directory, names[i].GetString(), &entry)
3070 // allocate memory for the names
/haiku/src/add-ons/kernel/file_systems/layers/write_overlay/
H A Dwrite_overlay.cpp1268 const char *names[] = { ".", ".." }; local
1277 fDirents[i]->name = strdup(names[i]);
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A DFUSEVolume.cpp70 // resize names buffer, if full
77 char* names = (char*)realloc(fNames, newCapacity); local
78 if (names == NULL)
81 fNames = names;
/haiku/src/apps/aboutsystem/
H A DAboutSystem.cpp1690 fCreditsView->Insert(translation.names);
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DShareVolume.cpp2928 // add the names
2933 status_t error = request.names.Append(name);

Completed in 136 milliseconds

12