Searched refs:join (Results 1 - 24 of 24) sorted by relevance

/haiku/3rdparty/kallisti5/
H A DlicenseReport.rb25 lines = File.foreach(filename).first(30).join("\n")
/haiku/3rdparty/pulkomandy/
H A Dpkggraph.py8 from os.path import isfile, join namespace
43 packages = [join(path, f) for f in listdir(path) if(isfile(join(path, f)))]
/haiku/src/libs/compat/openbsd_wlan/net80211/
H A Dieee80211_ioctl.c464 struct ieee80211_join join; local
503 /* 'nwid' disables auto-join magic */
506 /* '-nwid' re-enables auto-join */
534 if ((error = copyin(ifr->ifr_data, &join, sizeof(join))) != 0)
536 if (join.i_len > IEEE80211_NWID_LEN) {
540 if (join.i_flags & IEEE80211_JOIN_DEL) {
542 if (ic->ic_des_esslen == join.i_len &&
543 memcmp(join.i_nwid, ic->ic_des_essid,
544 join
[all...]
H A Dieee80211_node.c362 ieee80211_add_ess(struct ieee80211com *ic, struct ieee80211_join *join) argument
372 if (ess->esslen == join->i_len &&
373 memcmp(ess->essid, join->i_nwid, ess->esslen) == 0)
380 if ((join->i_flags & IEEE80211_JOIN_WPA) &&
381 (join->i_flags & IEEE80211_JOIN_NWKEY)) {
390 memcpy(ess->essid, join->i_nwid, join->i_len);
391 ess->esslen = join->i_len;
394 if (join->i_flags & IEEE80211_JOIN_WPA) {
395 if (join
[all...]
/haiku/src/apps/haikudepot/build/scripts/
H A Djsonschema2cppmodel.py223 cpp_header_filename = os.path.join(output_directory, cpp_name + '.h')
224 cpp_implementation_filename = os.path.join(output_directory, cpp_name + '.cpp')
H A Djsonschema2cppparser.py903 cpp_header_filename = os.path.join(output_directory, cpp_listener_name + '.h')
904 cpp_implementation_filename = os.path.join(output_directory, cpp_listener_name + '.cpp')
H A Dustache.py1049 data = b''.join(process(
/haiku/src/tools/
H A Dhardlink_packages.py109 finalizedNewFile = "".join(newFileForJam).encode('UTF-8')
132 pkgl.write("\n".join(packageFiles))
134 if os.system('cd ' + repodir + ' && package_repo create repo.info ' + " ".join(packageFiles)) != 0:
/haiku/src/tests/kits/net/service/
H A Dtestserver.py406 ha1 = hashfunc(':'.join([
413 ha2 = hashfunc(':'.join([
417 ha2 = hashfunc(':'.join([
428 return hashfunc(':'.join([
440 return hashfunc(':'.join(hash_components).encode('utf-8')).hexdigest()
487 cert_file = os.path.join(temp_cert_dir, 'cert.pem')
488 key_file = os.path.join(temp_cert_dir, 'key.pem')
536 parser.error('Unexpected arguments: {}'.format(', '.join(args[1:])))
H A Dproxy.py196 parser.error('Unexpected arguments: {}'.format(', '.join(args[1:])))
/haiku/src/tests/kits/net/netservices2/
H A Dtestserver.py406 ha1 = hashfunc(':'.join([
413 ha2 = hashfunc(':'.join([
417 ha2 = hashfunc(':'.join([
428 return hashfunc(':'.join([
440 return hashfunc(':'.join(hash_components).encode('utf-8')).hexdigest()
487 cert_file = os.path.join(temp_cert_dir, 'cert.pem')
488 key_file = os.path.join(temp_cert_dir, 'key.pem')
536 parser.error('Unexpected arguments: {}'.format(', '.join(args[1:])))
H A Dproxy.py196 parser.error('Unexpected arguments: {}'.format(', '.join(args[1:])))
/haiku/3rdparty/mmu_man/irc/Haiku/
H A Dplugin.py209 to = ' and '.join([', '.join(args[:-1]), args[-1]])
223 to = ' and '.join([', '.join(args[:-1]), args[-1]])
/haiku/build/scripts/
H A Dbootstrap_client.py27 commandToRun = " ".join(sys.argv[2:])
/haiku/src/tools/checkstyle/
H A Dcheckstyle.py51 path = os.path.join(root, file)
/haiku/src/add-ons/kernel/drivers/network/ether/usb_asix/
H A DASIXDevice.cpp638 ASIXDevice::ModifyMulticastTable(bool join, ether_address_t* group) argument
644 TRACE("%s multicast group %s\n", join ? "Joining" : "Leaving", groupName);
649 if (isInTable && join)
652 if (!isInTable && !join) {
660 if (join)
/haiku/src/servers/net/
H A DNetServer.cpp974 printf("auto join network \"%s\": %s\n", network.name,
1078 // We always try to join via the wpa_supplicant. Even if we could join
1084 // The wpa_supplicant isn't running yet, we may join ourselves.
1087 // We can join this network ourselves.
1109 BMessage join(kMsgWPAJoinNetwork);
1110 status_t status = join.AddString("device", deviceName);
1112 status = join.AddString("name", network.name);
1114 status = join.AddFlat("address", &network.address);
1116 status = join
[all...]
/haiku/src/add-ons/kernel/drivers/disk/virtual/nbd/
H A Dnbd-server.py109 data=''.join(abuf[req.range()])))
/haiku/src/add-ons/kernel/drivers/network/ether/usb_davicom/
H A DDavicomDevice.h140 status_t _ModifyMulticastTable(bool join,
H A DDavicomDevice.cpp757 DavicomDevice::_ModifyMulticastTable(bool join, ether_address_t *group) argument
763 TRACE("%s multicast group %s\n", join ? "Joining" : "Leaving", groupName);
768 if (isInTable && join)
771 if (!isInTable && !join) {
786 if (join)
/haiku/headers/private/interface/
H A DPictureDataWriter.h42 const join_mode& join,
/haiku/headers/libs/agg/
H A Dagg_rasterizer_outline_aa.h100 void line_join(outline_aa_join_e join) argument
104 join;
/haiku/src/kits/interface/
H A DPictureDataWriter.cpp142 PictureDataWriter::WriteSetLineMode(const cap_mode& cap, const join_mode& join, argument
148 Write<int16>((int16)join);
/haiku/src/tools/html5_remote_desktop/
H A DHaikuRemoteDesktop.js1181 console.warn('line join not implemented: ' + join);

Completed in 311 milliseconds