Searched refs:network (Results 1 - 25 of 133) sorted by relevance

123456

/macosx-10.10/files-662.1.1/private/etc/
H A Dttys28 ttyp[0x0-0xf] none network slot=36
29 ttyq[0x0-0xf] none network
30 ttyr[0x0-0xf] none network
31 ttys[0x0-0xf] none network
32 ttyt[0x0-0xf] none network
33 ttyu[0x0-0xf] none network
34 ttyv[0x0-0xf] none network
35 ttyw[0x0-0xf] none network
38 ttys[000-999] none network
H A Dttys.embedded27 ttyp[0x0-0xf] none network slot=36 secure
28 ttyq[0x0-0xf] none network secure
29 ttyr[0x0-0xf] none network secure
30 ttys[0x0-0xf] none network secure
31 ttyt[0x0-0xf] none network secure
32 ttyu[0x0-0xf] none network secure
33 ttyv[0x0-0xf] none network secure
34 ttyw[0x0-0xf] none network secure
37 ttys[000-999] none network secure
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DNetworkTimelineOverviewGraph.css26 .timeline-overview-graph.network {
30 .timeline-overview-graph.network > .graph-row {
34 .timeline-overview-graph.network > .graph-row > .timeline-record-bar {
39 .timeline-overview-graph.network > .graph-row > .timeline-record-bar > .segment:not(.inactive) {
43 .timeline-overview-graph.network:nth-child(even) > .graph-row > .timeline-record-bar > .segment:not(.inactive) {
H A DNetworkTimelineView.css26 .timeline-view.network > .data-grid {
34 .sidebar > .panel.navigation.timeline.timeline-content-view-showing .navigation-sidebar-panel-content-tree-outline.network .item .subtitle {
H A DTimelineIcons.css26 .network-icon .icon {
30 .network-icon.large .icon {
34 body.mac-platform.legacy .network-icon .icon {
38 body.mac-platform.legacy .network-icon.large .icon {
/macosx-10.10/IOKitUser-1050.1.21/network.subproj/
H A DIONetworkLib.h32 #include <IOKit/network/IONetworkData.h>
33 #include <IOKit/network/IONetworkMedium.h>
34 #include <IOKit/network/IONetworkStats.h>
35 #include <IOKit/network/IOEthernetStats.h>
36 #include <IOKit/network/IONetworkUserClient.h>
56 @abstract Write to the buffer of a network data object.
58 @param dataHandle The handle of a network data object.
69 @abstract Read the buffer of a network data object.
71 @param dataHandle The handle of a network data object.
84 @abstract Fill the buffer of a network dat
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/examples/functions/
H A Dterm17 network|dialup|unknown|lat)
/macosx-10.10/configd-699.1.5/
H A Dget-mobility-info6 # Collect system & network configuration information.
85 # Execute network reachability/DNS commands early
187 # network interface configuration
197 # network route configuration
307 echo "#" > network-information
308 echo "# scutil --nwi" >> network-information
309 echo "#" >> network-information
310 scutil --nwi >> network-information 2>&1
313 echo "" >> network-information
314 echo "#" >> network
[all...]
/macosx-10.10/emacs-93/emacs/lisp/erc/
H A Derc-services.el29 ;; are made to test if NickServ is the real NickServ for a given network or
44 ;; Using the freenode network as an example:
87 'both - Do the former if the network supports it, otherwise do the
249 "Alist of NickServer details, sorted by network.
253 SYMBOL is a network identifier, a symbol, as used in `erc-networks-alist'.
277 (defsubst erc-nickserv-alist-sender (network &optional entry)
278 (nth 1 (or entry (assoc network erc-nickserv-alist))))
280 (defsubst erc-nickserv-alist-regexp (network &optional entry)
281 (nth 2 (or entry (assoc network erc-nickserv-alist))))
283 (defsubst erc-nickserv-alist-nickserv (network
[all...]
/macosx-10.10/ipsec-286.1.1/ipsec-tools/racoon/
H A Disakmp_unity.c212 struct unity_network *network = (struct unity_network *)(attr + 1); local
226 &network[index],
242 &network[index],
278 struct unity_network * network; local
295 network = (struct unity_network *)(new + 1);
298 memcpy(&network[index],
299 &netentry->network,
302 inet_ntop(AF_INET, &netentry->network.addr4, tmp1, 40);
303 inet_ntop(AF_INET, &netentry->network.mask4, tmp2, 40);
312 int splitnet_list_add(list, network, coun
[all...]
H A Disakmp_unity.h66 struct unity_network network; member in struct:unity_netentry
/macosx-10.10/smb-759.0/kernel/netsmb/
H A Dsmb_converter.h58 int smb_convert_path_to_network(char *path, size_t max_path_len, char *network,
61 int smb_convert_network_to_path(char *network, size_t max_ntwrk_len, char *path,
H A Dsmb_usr.c283 * Converts UTF8 string to a network style STRING. The network STRING returned
291 char *network = NULL; local
297 SMB_MALLOC(network, char *, ntwrk_len, M_SMBSTR, M_WAITOK | M_ZERO);
300 if ((utf8str == NULL) || (network == NULL)) {
304 error = smb_convert_path_to_network(utf8str, dp->ioc_src_len, network, &ntwrk_len,
313 error = copyout(network, dp->ioc_kern_dest, ntwrk_len);
316 smb_hexdump(__FUNCTION__, "dest buffer: ", (u_char *)network, ntwrk_len);
325 if (network)
326 SMB_FREE(network, M_SMBST
339 char *network = NULL; local
[all...]
H A Dsmb_converter.c397 * Converts the network UTF-16 string to a UTF-8 string. This routine should be
472 set_network_delimiter(char *network, char ntwrk_delimiter, size_t delimiter_size, argument
479 uint16_t *utf16_ptr = (uint16_t *)network;
484 *network++ = ntwrk_delimiter;
485 return network;
490 * Given a UTF8 path create a network path
494 * network - Either UTF16 or ASCII string
495 * ntwrk_len - On input max buffer size, on output length of network buffer
506 smb_convert_path_to_network(char *path, size_t max_path_len, char *network, argument
514 size_t resid = *ntwrk_len; /* Room left in the the network buffe
584 smb_convert_network_to_path(char *network, size_t max_ntwrk_len, char *path, size_t *path_len, char ntwrk_delimiter, int flags, int usingUnicode) argument
[all...]
/macosx-10.10/dtrace-147/test/tst/common/predicates/
H A Dtst.predcache.ksh30 svcadm disable -s svc:/network/nfs/mapid:default
37 svcadm enable svc:/network/nfs/mapid:default
42 svcadm enable svc:/network/nfs/mapid:default
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/nssov/
H A Dnetwork.c0 /* network.c - network address lookup routines */
28 * DESC 'Abstraction of a network. The distinguished value of
43 NSSOV_INIT(network)
45 NSSOV_CBPRIV(network,
50 /* write a single network entry to the stream */
60 /* get the other names for the network */
64 Debug(LDAP_DEBUG_ANY,"network entry %s does not contain %s value\n",
87 Debug(LDAP_DEBUG_ANY,"network entry %s does not contain %s value\n",
113 NSSOV_CB(network)
[all...]
/macosx-10.10/ppp-786.1.1/Helpers/pppd/
H A Dipxcp.h86 bool neg_nn; /* Negotiate IPX network number? */
87 bool req_nn; /* Ask peer to send IPX network number */
95 bool accept_network; /* accept network number */
100 u_int32_t his_network; /* base network number */
101 u_int32_t our_network; /* our value for network number */
102 u_int32_t network; /* the final network number */ member in struct:ipxcp_options
/macosx-10.10/dcerpc-61/dcerpc/rpcd/
H A Drc.dcerpcd14 . /etc/sysconfig/network
/macosx-10.10/vim-55/runtime/ftplugin/
H A Dservices.vim2 " Language: services(5) - Internet network services list
/macosx-10.10/bless-103/libbless/Network/
H A DBLIsValidNetworkInterface.c36 #import <IOKit/network/IONetworkInterface.h>
37 #import <IOKit/network/IONetworkController.h>
38 #import <IOKit/network/IONetworkMedium.h>
H A DBLGetPreferredNetworkInterface.c36 #import <IOKit/network/IONetworkInterface.h>
37 #import <IOKit/network/IONetworkController.h>
38 #import <IOKit/network/IONetworkMedium.h>
/macosx-10.10/mDNSResponder-561.1.1/mDNSShared/
H A Ddnsextd.conf23 // network, you might allow anyone to perform updates. To do that, you just
29 // On a machine connected to the Internet or other large open network,
/macosx-10.10/bless-103/libbless/OpenFirmware/
H A DBLGetOpenFirmwareBootDeviceForNetworkPath.c37 #include <IOKit/network/IONetworkInterface.h>
38 #include <IOKit/network/IONetworkController.h>
/macosx-10.10/ksh-23/ksh/src/lib/libcmd/
H A Ddate.c161 "[n!:network?Set network time.]"
219 settime(Shbltin_t* context, const char* cmd, Time_t now, int adjust, int network) argument
226 if (!adjust && !network)
242 if (network)
301 int network = 0; /* don't set network time */ local
342 network = 1;
502 else if (settime(context, cmd, now, increment, network))
/macosx-10.10/IONetworkingFamily-101/
H A DIOEthernetInterface.h70 #include <IOKit/network/IONetworkInterface.h>
71 #include <IOKit/network/IOEthernetController.h>
72 #include <IOKit/network/IOEthernetStats.h>
151 @param controller A network controller object that will service
200 @abstract A notification that the interface has opened the network
203 network controller has accepted an open from this interface object.
216 @abstract A notification that the interface will close the network
227 @abstract Handles a notification that the network controller
232 @param controller The network controller object.
235 @param stateNumber An index to a state in the network controlle
[all...]

Completed in 308 milliseconds

123456