Searched refs:policy (Results 1 - 25 of 34) sorted by last modified time

12

/haiku/src/add-ons/kernel/drivers/network/wlan/idualwifi7260/dev/pci/
H A Dif_iwm.c2878 time_cmd.policy
H A Dif_iwmreg.h2816 /* Time event policy values
2878 * @policy: defines whether uCode shall notify the host or other uCode modules
2897 uint16_t policy; member in struct:iwm_time_event_cmd
/haiku/src/bin/network/traceroute/
H A Dtraceroute.c379 int setpolicy(int so, char *policy);
1341 setpolicy(int so, char *policy) argument
1345 buf = ipsec_set_policy(policy, strlen(policy));
/haiku/src/bin/network/ping/
H A Dping6.c606 errx(1, "invalid security policy");
2721 setpolicy(int so __unused, char *policy) argument
2725 if (policy == NULL)
2728 buf = ipsec_set_policy(policy, strlen(policy));
2733 warnx("Unable to set IPsec policy");
/haiku/src/add-ons/kernel/drivers/network/wlan/iaxwifi200/dev/pci/
H A Dif_iwxreg.h3040 /* Time event policy values
3102 * @policy: defines whether uCode shall notify the host or other uCode modules
3121 uint16_t policy; member in struct:iwx_time_event_cmd
4312 * enum iwx_mac_data_policy - policy of the data path for this MAC
/haiku/src/apps/webpositive/
H A DBrowserWindow.cpp2552 uint32 policy = isNewWindow ? fNewWindowPolicy : fNewTabPolicy; local
2553 // Implement new page policy
2554 switch (policy) {
/haiku/src/system/libroot/posix/pthread/
H A Dpthread.cpp281 pthread_getschedparam(pthread_t thread, int *policy, struct sched_param *param) argument
288 if (policy != NULL) {
290 *policy = SCHED_RR;
292 *policy = SCHED_OTHER;
299 pthread_setschedparam(pthread_t thread, int policy, argument
303 if (policy != SCHED_RR && policy != SCHED_OTHER)
305 if (policy == SCHED_RR && param->sched_priority < B_FIRST_REAL_TIME_PRIORITY)
307 if (policy == SCHED_OTHER && param->sched_priority >= B_FIRST_REAL_TIME_PRIORITY)
/haiku/headers/posix/
H A Dpthread.h235 int *policy);
236 extern int pthread_attr_setschedpolicy(pthread_attr_t *attr, int policy);
256 extern int pthread_getschedparam(pthread_t thread, int *policy,
258 extern int pthread_setschedparam(pthread_t thread, int policy,
/haiku/src/build/libbe/storage/
H A DMergedDirectory.cpp29 BMergedDirectory::BMergedDirectory(BPolicy policy) argument
33 fPolicy(policy),
65 BMergedDirectory::SetPolicy(BPolicy policy) argument
67 fPolicy = policy;
/haiku/src/kits/storage/
H A DMergedDirectory.cpp30 BMergedDirectory::BMergedDirectory(BPolicy policy) argument
34 fPolicy(policy),
66 BMergedDirectory::SetPolicy(BPolicy policy) argument
68 fPolicy = policy;
/haiku/src/preferences/bluetooth/
H A DBluetoothSettingsView.cpp58 fPolicyMenu = new BOptionPopUp("policy",
59 B_TRANSLATE("Incoming connections policy:"),
160 int32 policy; local
161 if (message->FindInt32("be:value", (int32*)&policy) == B_OK) {
162 fSettings.SetPolicy(policy);
H A DBluetoothSettings.cpp23 fCurrentSettings.policy = 0;
43 BluetoothSettings::SetPolicy(int32 policy) argument
45 fCurrentSettings.policy = policy;
88 fSettingsMessage.SetValue("Policy", fCurrentSettings.policy);
H A DBluetoothSettings.h33 { return fCurrentSettings.policy; }
39 void SetPolicy(int32 policy);
49 int32 policy; member in struct:BluetoothSettings::BTSetting
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_ht.c233 /* setup default aggregation policy */
2398 * policy. We intercept ADDBA-related frames and use them to
2487 uint8_t dialogtoken, policy; local
2497 policy = _IEEE80211_MASKSHIFT(baparamset, IEEE80211_BAPS_POLICY);
2522 if (policy != (tap->txa_flags & IEEE80211_AGGR_IMMEDIATE)) {
2526 "policy mismatch: expecting %s, "
2529 policy, tid, code);
H A Dieee80211_haiku.h393 * A "policy module" is an adjunct module to net80211 that provides
394 * functionality that typically includes policy decisions. This
397 #define _IEEE80211_POLICY_MODULE(policy, name, version, load, unload) \
398 static void ieee80211_##policy##_##name##_load() { load; } \
399 static void ieee80211_##policy##_##name##_unload() { unload; } \
400 SYSINIT(ieee80211_##policy##_##name, SI_SUB_DRIVERS, SI_ORDER_ANY, \
401 ieee80211_##policy##_##name##_load, NULL); \
402 SYSUNINIT(ieee80211_##policy##_##name, SI_SUB_DRIVERS, SI_ORDER_ANY, \
403 ieee80211_##policy##_##name##_unload, NULL)
423 * Scanner modules provide scanning policy
[all...]
H A Dieee80211_acl.c36 * if the frame should be accepted or rejected. If the policy is
249 acl_setpolicy(struct ieee80211vap *vap, int policy) argument
254 "ACL: set policy to %u\n", policy);
256 switch (policy) {
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi2200/dev/iwi/
H A Dif_iwi.c2913 assoc->policy |= htole16(IWI_POLICY_WME);
2953 assoc->policy |= htole16(IWI_POLICY_WPA);
2981 DPRINTF(("%s bssid %6D dst %6D channel %u policy 0x%x "
2985 assoc->chan, le16toh(assoc->policy), assoc->auth,
H A Dif_iwireg.h446 uint16_t policy; member in struct:iwi_associate
/haiku/src/libs/alm/
H A DALMLayout.cpp33 const char* kBadLayoutPolicyField = "BALMLayout:policy";
972 BALMLayout::SetBadLayoutPolicy(BadLayoutPolicy* policy) argument
974 if (fBadLayoutPolicy != policy)
976 if (policy == NULL)
977 policy = new DefaultPolicy();
978 fBadLayoutPolicy = policy;
1193 BadLayoutPolicy* policy; local
1194 err = unarchiver.FindObject(kBadLayoutPolicyField, policy);
1196 SetBadLayoutPolicy(policy);
/haiku/src/kits/package/solver/libsolv/
H A DLibsolvSolver.cpp17 #include <solv/policy.h>
/haiku/src/apps/packageinstaller/
H A DPackageView.cpp322 PackageView::ItemExists(PackageItem& item, BPath& path, int32& policy) argument
326 switch (policy) {
389 if (policy == P_EXISTS_NONE) {
409 policy = choice;
411 policy = P_EXISTS_ASK;
H A DPackageItem.cpp907 switch (state->policy) {
1095 switch (state->policy) {
H A DPackageInstall.cpp217 state.policy = choice;
H A DPackageView.h43 BPath& path, int32& policy);
H A DPackageItem.h36 // Existing item overwriting policy of a single file
58 policy(_policy),
69 uint8 policy; member in struct:ItemState

Completed in 429 milliseconds

12