Searched refs:sec (Results 201 - 225 of 395) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/cifs/
H A Dnetmisc.c966 int sec, min, days, month, year; local
974 sec = 2 * st->TwoSeconds;
976 if ((sec > 59) || (min > 59))
977 cERROR(1, "illegal time min %d sec %d", min, sec);
978 sec += (min * 60);
979 sec += 60 * 60 * st->Hours;
1007 sec += 24 * 60 * 60 * days;
1009 ts.tv_sec = sec + offset;
1011 /* cFYI(1, "sec afte
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/jffs2/
H A Dos-linux.h34 #define ITIME(sec) ((struct timespec){sec, 0})
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Ddio.h142 #define DIO_ENCODE_ID(pr,sec) ((((int)sec & 0xff) << 8) | ((int)pr & 0xff))
H A Dtime.h76 const unsigned int min, const unsigned int sec);
78 extern void set_normalized_timespec(struct timespec *ts, time_t sec, s64 nsec);
H A Dmmzone.h920 #define section_nr_to_pfn(sec) ((sec) << PFN_SECTION_SHIFT)
982 #define SECTION_NR_TO_ROOT(sec) ((sec) / SECTIONS_PER_ROOT)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/lirc/
H A Dlirc_imon.c571 int sec = 0; local
575 sec--;
580 sec += a->tv_sec - b->tv_sec;
581 sec *= 1000;
583 sec += usecs;
585 if (sec < 0)
586 sec = 1000;
588 return sec;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/build-aux/
H A Dupdate-copyright129 my ($sec, $min, $hour, $mday, $month, $year) = localtime (time ());
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/ipw2x00/
H A Dipw2200.c2075 if (priv->ieee->sec.encrypt) {
4891 IPW_ERROR("TGi Tx Key: state 0x%02x sec type "
5986 if (!(priv->ieee->sec.flags & (1 << index)))
5990 memcpy(key.key, priv->ieee->sec.keys[index], SCM_TEMPORAL_KEY_LENGTH);
6013 if (!(priv->ieee->sec.flags & (1 << i))) {
6018 key.key_size = priv->ieee->sec.key_sizes[i];
6019 memcpy(key.key, priv->ieee->sec.keys[i], key.key_size);
6076 switch (priv->ieee->sec.level) {
6078 if (priv->ieee->sec.flags & SEC_ACTIVE_KEY)
6081 priv->ieee->sec
6556 struct libipw_security sec = { local
6736 struct libipw_security sec = { local
10799 shim__set_security(struct net_device *dev, struct libipw_security *sec) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/block/
H A Dhd.c582 unsigned int block, nsect, sec, track, head, cyl; local
620 sec = block % disk->sect + 1;
628 cyl, head, sec, nsect, req->buffer);
633 hd_out(disk, nsect, sec, head, cyl, ATA_CMD_PIO_READ,
639 hd_out(disk, nsect, sec, head, cyl, ATA_CMD_PIO_WRITE,
H A Damiflop.c862 sec, /* 0-...*/ member in struct:dos_header
1040 do { /* search for the right sync of each sec-hdr */
1057 hdr.sec, hdr.len_desc, hdr.crc);
1090 unit[drive].track, drive, scnt, hdr.sec);
1100 hdr.track,hdr.side,hdr.sec,hdr.len_desc,scnt);
1105 raw = dos_decode((unsigned char *)(unit[drive].trackbuf + (hdr.sec - 1) * 512), (ushort *) raw, 512);
1107 crc = dos_data_crc(unit[drive].trackbuf + (hdr.sec - 1) * 512);
1112 hdr.sec, hdr.len_desc, scnt,data_crc[0], crc);
1114 ((ulong *)(unit[drive].trackbuf+(hdr.sec-1)*512))[0],
1115 ((ulong *)(unit[drive].trackbuf+(hdr.sec
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/isofs/
H A Dinode.c555 struct iso_supplementary_descriptor *sec = NULL; local
623 sec = (struct iso_supplementary_descriptor *)vdp;
624 if (sec->escape[0] == 0x25 && sec->escape[1] == 0x2f) {
626 if (sec->escape[2] == 0x40)
628 else if (sec->escape[2] == 0x43)
630 else if (sec->escape[2] == 0x45)
640 sec = NULL;
677 pri = (struct iso_primary_descriptor *) sec;
757 pri = (struct iso_primary_descriptor *) sec;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192su/ieee80211/
H A Dieee80211_softmac.c2910 struct ieee80211_security sec = { local
2916 sec.auth_mode = WLAN_AUTH_SHARED_KEY;
2920 sec.auth_mode = WLAN_AUTH_OPEN;
2925 sec.auth_mode = RTL_WLAN_AUTH_LEAP;
2932 ieee->set_security(ieee->dev, &sec);
2963 struct ieee80211_security sec = { local
2972 sec.flags |= SEC_LEVEL;
2973 sec.level = SEC_LEVEL_0;
2976 sec.flags |= SEC_LEVEL;
2977 sec
3021 struct ieee80211_security sec = { local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/printing/
H A Dnt_printing.c342 SEC_DESC *sec, *new_sec; local
376 sec = sd_orig->sec;
380 if ( !sec->dacl ) {
387 for ( i=0; i<sec->dacl->num_aces; i++ ) {
388 switch ( sec->dacl->aces[i].access_mask ) {
390 sec->dacl->aces[i].access_mask = PRINTER_ACE_PRINT;
394 sec->dacl->aces[i].access_mask = PRINTER_ACE_FULL_CONTROL;
398 sec->dacl->aces[i].access_mask = PRINTER_ACE_MANAGE_DOCUMENTS;
431 sd_size = sec_desc_size(sd_store->sec)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/rtc/
H A Drtc-cmos.c112 hpet_set_alarm_time(unsigned char hrs, unsigned char min, unsigned char sec) argument
327 unsigned char mon, mday, hrs, min, sec, rtc_control; local
336 sec = t->time.tm_sec;
345 sec = (sec < 60) ? bin2bcd(sec) : 0xff;
356 CMOS_WRITE(sec, RTC_SECONDS_ALARM);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/
H A Dgdth_proc.c158 int id, i, j, k, sec, flag; local
636 sec = (int)(tv.tv_sec - estr->first_stamp);
637 if (sec < 0) sec = 0;
639 sec/3600, sec%3600/60, sec%60, hrec);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/ncftp/
H A Dprogress.c485 (long) cip->sec / 3600L,
486 ((long) cip->sec / 60L) % 60L,
487 ((long) cip->sec % 60L),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ntpclient/
H A Dntpclient.c414 float sec, etime, stime, disp; local
422 &day, &sec, &etime, &stime, &skew, &disp, &freq);
425 absolute=(day-15020)*86400+(int)sec;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/ntpclient/
H A Dntpclient.c370 float sec, etime, stime, disp; local
378 &day, &sec, &etime, &stime, &skew, &disp, &freq);
381 absolute=(day-15020)*86400+(int)sec;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk/
H A Dthreadsgi.cpp102 int wxCondition::Wait(wxMutex& WXUNUSED(mutex), unsigned long WXUNUSED(sec),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk1/
H A Dthreadsgi.cpp102 int wxCondition::Wait(wxMutex& WXUNUSED(mutex), unsigned long WXUNUSED(sec),
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/edac/
H A Dppc4xx_edac.c168 int sec; /* Single-bit correctable error IRQ assigned */ member in struct:ppc4xx_edac_pdata::__anon11199
1039 pdata->irqs.sec = NO_IRQ;
1160 pdata->irqs.sec = sec_irq;
1368 free_irq(pdata->irqs.sec, mci);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/
H A Dpvclock.c178 now.tv_sec = wall_clock->sec;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/lguest/
H A Dboot.c871 unsigned long sec, nsec; local
881 sec = lguest_data.time.tv_sec;
893 } while (unlikely(lguest_data.time.tv_sec != sec));
896 return sec*1000000000ULL + nsec;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/mod/
H A Dmodpost.c257 static enum export export_from_sec(struct elf_info *elf, unsigned int sec) argument
259 if (sec == elf->export_sec)
261 else if (sec == elf->export_unused_sec)
263 else if (sec == elf->export_gpl_sec)
265 else if (sec == elf->export_unused_gpl_sec)
267 else if (sec == elf->export_gpl_future_sec)
811 const char *sec = sech_name(elf, sechdr); local
815 !match(sec, section_white_list)) {
820 modname, sec);
1171 * Find symbols before or equal addr and after addr - in the section sec
1176 find_elf_symbol2(struct elf_info *elf, Elf_Addr addr, const char *sec) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/rpc_parse/
H A Dparse_sec.c387 if ((UNMARSHALLING(ps) && psdb->len != 0) || (MARSHALLING(ps) && psdb->sec != NULL)) {
388 if(!sec_io_desc("sec ", &psdb->sec, ps, depth))

Completed in 183 milliseconds

1234567891011>>