/openbsd-src/gnu/usr.bin/perl/dist/IO/lib/IO/ |
H A D | Pipe.pm | 23 my $me = bless gensym(), $class; 25 my($readfh,$writefh) = @_ ? @_ : $me->handles; 30 @{*$me} = ($readfh, $writefh); 32 $me; 43 my $me = shift; 63 $fh = $rw ? ${*$me}[0] : ${*$me}[1]; 66 $fh = $rw ? $me->reader() : $me->writer(); # close the other end 94 my $me [all...] |
/openbsd-src/sys/dev/wscons/ |
H A D | wsmux.c | 227 wsmux_mux_open(struct wsevsrc *me, struct wseventvar *evar) in wsmux_mux_open() argument 229 struct wsmux_softc *sc = (struct wsmux_softc *)me; in wsmux_mux_open() 245 struct wsevsrc *me; in wsmux_do_open() local 257 TAILQ_FOREACH(me, &sc->sc_cld, me_next) { in wsmux_do_open() 259 sc->sc_base.me_dv.dv_xname, me, in wsmux_do_open() 260 me->me_dv.dv_xname)); in wsmux_do_open() 262 if (me->me_evp != NULL) { in wsmux_do_open() 266 if (me->me_parent != sc) { in wsmux_do_open() 267 printf("wsmux_do_open: bad child=%p\n", me); in wsmux_do_open() 270 error = wsevsrc_open(me, eva in wsmux_do_open() 308 wsmux_mux_close(struct wsevsrc * me) wsmux_mux_close() argument 322 struct wsevsrc *me; wsmux_do_close() local 386 struct wsevsrc *me; wsmux_do_ioctl() local 644 wsmux_attach_sc(struct wsmux_softc * sc,struct wsevsrc * me) wsmux_attach_sc() argument 711 wsmux_detach_sc(struct wsevsrc * me) wsmux_detach_sc() argument 727 wsmux_detach_sc_locked(struct wsmux_softc * sc,struct wsevsrc * me) wsmux_detach_sc_locked() argument 766 struct wsevsrc *me; wsmux_do_displayioctl() local 836 struct wsevsrc *me; wsmux_set_display() local 908 struct wsevsrc *me; wsmux_depth() local [all...] |
H A D | wsmuxvar.h | 64 #define wsevsrc_open(me, evp) \ argument 65 ((me)->me_ops->dopen((me), evp)) 66 #define wsevsrc_close(me) \ argument 67 ((me)->me_ops->dclose((me))) 68 #define wsevsrc_ioctl(me, cmd, data, flag, p) \ argument 69 ((me)->me_ops->dioctl(&(me)->me_dv, cmd, (caddr_t)data, flag, p)) 70 #define wsevsrc_display_ioctl(me, cmd, data, flag, p) \ argument 71 ((me)->me_ops->ddispioctl(&(me)->me_dv, cmd, (caddr_t)data, flag, p)) 72 #define wsevsrc_set_display(me, arg) \ argument 73 ((me)->me_ops->dsetdisplay(&(me)->me_dv, arg))
|
/openbsd-src/regress/usr.bin/ssh/ |
H A D | allow-deny-users.sh | 7 me="$LOGNAME" 8 if [ "x$me" = "x" ]; then 9 me=`whoami` 26 ${SSH} -F $OBJ/ssh_proxy "$me@somehost" true 37 test_auth "$other $me" "" false "user in DenyUsers allowed" 38 test_auth "$me $other" "" false "user in DenyUsers allowed" 40 test_auth "" "$other $me" true "user in AllowUsers denied" 41 test_auth "" "$me $other" true "user in AllowUsers denied" 42 test_auth "$me $other" "$me $other" false "user in both DenyUsers and AllowUsers allowe… 43 test_auth "$other $me" "$other $me" false "user in both DenyUsers and AllowUsers allowe…
|
/openbsd-src/usr.sbin/amd/amd/ |
H A D | restart.c | 62 struct mntent *me = mlp->mnt; in restart() local 64 if (STREQ(me->mnt_type, "ffs")) { in restart() 69 } else if (STREQ(me->mnt_type, "nfs")) { in restart() 74 char *colon = strchr(me->mnt_fsname, ':'); in restart() 76 plog(XLOG_WARNING, "%s is an existing automount point", me->mnt_dir); in restart() 81 } else if (STREQ(me->mnt_type, "mfs")) { in restart() 101 cp = strchr(me->mnt_fsname, ':'); in restart() 109 mo.opt_rhost = strdup(me->mnt_fsname); in restart() 117 plog(XLOG_WARNING, "NFS server entry assumed to be %s:/", me->mnt_fsname); in restart() 118 mo.opt_rhost = strdup(me->mnt_fsname); in restart() [all …]
|
/openbsd-src/gnu/usr.bin/perl/cpan/libnet/lib/Net/ |
H A D | POP3.pm | 113 my $me = shift; 114 ${*$me}{'net_pop3_host'}; 118 ## We don't want people sending me their passwords when they report problems 128 my ($me, $user, $pass) = @_; 131 ($user, $pass) = $me->_lookup_credentials($user); 134 $me->user($user) 135 and $me->pass($pass); 151 my ($me, $user, $pass) = @_; 167 unless ($banner = (${*$me}{'net_pop3_banner'} =~ /(<.*>)/)[0]); 170 ($user, $pass) = $me->_lookup_credentials($user); [all …]
|
H A D | SMTP.pm | 131 my $me = shift; 132 ${*$me}{'net_smtp_host'}; 141 my $me = shift; 143 return ${*$me}{'net_smtp_banner'} || undef; 148 my $me = shift; 150 return ${*$me}{'net_smtp_domain'} || undef; 242 my $me = shift; 244 my $ok = $me->_EHLO($domain); 245 my @msg = $me->message; 248 my $h = ${*$me}{'net_smtp_esmtp'} = {}; [all …]
|
H A D | Netrc.pm | 169 my $me = shift; 171 exists $me->{login} 172 ? $me->{login} 178 my $me = shift; 180 exists $me->{account} 181 ? $me->{account} 187 my $me = shift; 189 exists $me->{password} 190 ? $me->{password} 196 my $me = shift; [all …]
|
/openbsd-src/usr.bin/gprof/PSD.doc/ |
H A D | Makefile | 5 SRCS= header.me abstract.me intro.me profiling.me gathering.me \ 6 postp.me present.me refs.me 9 MACROS= -me
|
/openbsd-src/usr.sbin/ldpd/ |
H A D | lde_lib.c | 160 struct lde_map *me; in rt_dump() local 185 LIST_FOREACH(me, &fn->downstream, entry) { in rt_dump() 186 rtctl.in_use = lde_nbr_is_nexthop(fn, me->nexthop); in rt_dump() 187 rtctl.nexthop = me->nexthop->id; in rt_dump() 188 rtctl.remote_label = me->map.label; in rt_dump() 349 struct lde_map *me; in lde_kernel_insert() local 393 me = (struct lde_map *)fec_find(&ln->recv_map, &fn->fec); in lde_kernel_insert() 394 if (me) in lde_kernel_insert() 396 lde_check_mapping(&me->map, ln); in lde_kernel_insert() 438 struct lde_map *me; in lde_check_mapping() local [all …]
|
H A D | labelmapping.c | 53 struct mapping_entry *me; in send_labelmessage() local 62 while ((me = TAILQ_FIRST(mh)) != NULL) { in send_labelmessage() 78 msg_size += len_fec_tlv(&me->map); in send_labelmessage() 79 if (me->map.label != NO_LABEL) in send_labelmessage() 81 if (me->map.flags & F_MAP_REQ_ID) in send_labelmessage() 83 if (me->map.flags & F_MAP_STATUS) in send_labelmessage() 97 err |= gen_fec_tlv(buf, &me->map); in send_labelmessage() 98 if (me->map.label != NO_LABEL) in send_labelmessage() 99 err |= gen_label_tlv(buf, me->map.label); in send_labelmessage() 100 if (me->map.flags & F_MAP_REQ_ID) in send_labelmessage() [all …]
|
/openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.threads/ |
H A D | tls.c | 67 int me = (long) vp; local 74 another_thread_local = me; 75 for( i = 0; i <= me; i++ ) { 79 another_thread_local_val[me] = another_thread_local; 80 thread_local_val[ me ] = a_thread_local; /* here we know tls value */ 84 fprintf (stderr, "th %d post on sem tell_main failed\n", me); 89 fprintf (stderr, "th %d post on tell main\n", me); 95 fprintf (stderr, "th %d start wait on tell_thread\n", me); 103 fprintf (stderr, "th %d wait tell_thread got EINTR, rewaiting\n", me); 109 fprintf (stderr, "th %d wait on sem tell_thread failed\n", me); [all …]
|
/openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
H A D | FileEntry.h | 68 StringRef getNameAsRequested() const { return ME->first(); } in getNameAsRequested() 131 MapValue(MapEntry &ME) : V(&ME) {} in MapValue() 135 bool isSameRef(const FileEntryRef &RHS) const { return ME == RHS.ME; } in isSameRef() 157 explicit FileEntryRef(const MapEntry &ME) : ME(&ME) { in FileEntryRef() argument 158 assert(ME.second && "Expected payload"); in FileEntryRef() 159 assert(ME.second->V && "Expected non-null"); in FileEntryRef() 164 const clang::FileEntryRef::MapEntry &getMapEntry() const { return *ME; } in getMapEntry() 168 const MapEntry *ME = this->ME; in getBaseMapEntry() local 169 while (const void *Next = ME->second->V.dyn_cast<const void *>()) in getBaseMapEntry() 170 ME = static_cast<const MapEntry *>(Next); in getBaseMapEntry() [all …]
|
H A D | DirectoryEntry.h | 56 const DirectoryEntry &getDirEntry() const { return *ME->getValue(); } in getDirEntry() 58 StringRef getName() const { return ME->getKey(); } in getName() 68 const MapEntry &getMapEntry() const { return *ME; } in getMapEntry() 71 bool isSameRef(DirectoryEntryRef RHS) const { return ME == RHS.ME; } in isSameRef() 74 DirectoryEntryRef(const MapEntry &ME) : ME(&ME) {} in DirectoryEntryRef() argument 100 DirectoryEntryRef(optional_none_tag) : ME(nullptr) {} in DirectoryEntryRef() 101 bool hasOptionalValue() const { return ME; } in hasOptionalValue() 109 : ME(llvm::DenseMapInfo<const MapEntry *>::getEmptyKey()) {} 111 : ME(llvm::DenseMapInfo<const MapEntry *>::getTombstoneKey()) {} 117 const MapEntry *ME;
|
/openbsd-src/regress/usr.bin/mandoc/mdoc/Nm/ |
H A D | emptyNAMEuse.out_ascii | 3 NNAAMMEE 7 ssoommee__nnaammee 8 ssoommee__nnaammee
|
H A D | badNAMEuse.out_ascii | 3 NNAAMMEE 7 ssoommee__nnaammee 8 ssoommee__nnaammee
|
/openbsd-src/regress/lib/libpthread/pthread_rwlock/ |
H A D | pthread_rwlock.c | 37 int me = *(int *)arg; in reader() local 44 printf("reader %d locked, state = %d\n", me, state); in reader() 51 printf("reader %d woken, state = %d\n", me, state); in reader() 59 printf("reader %d unlocked\n", me); in reader() 67 printf("reader %d woken, state = %d\n", me, state); in reader() 70 printf("reader %d trying again (%d)\n", me, state); in reader() 72 printf("reader %d locked again (%d)\n", me, state); in reader() 76 printf("reader %d woken, state = %d\n", me, state); in reader() 81 printf("reader %d exiting\n", me); in reader()
|
/openbsd-src/sys/dev/pci/drm/amd/amdgpu/ |
H A D | uvd_v7_0.c | 75 return RREG32_SOC15(UVD, ring->me, mmUVD_RBC_RB_RPTR); in uvd_v7_0_ring_get_rptr() 89 if (ring == &adev->uvd.inst[ring->me].ring_enc[0]) in uvd_v7_0_enc_ring_get_rptr() 90 return RREG32_SOC15(UVD, ring->me, mmUVD_RB_RPTR); in uvd_v7_0_enc_ring_get_rptr() 92 return RREG32_SOC15(UVD, ring->me, mmUVD_RB_RPTR2); in uvd_v7_0_enc_ring_get_rptr() 106 return RREG32_SOC15(UVD, ring->me, mmUVD_RBC_RB_WPTR); in uvd_v7_0_ring_get_wptr() 123 if (ring == &adev->uvd.inst[ring->me].ring_enc[0]) in uvd_v7_0_enc_ring_get_wptr() 124 return RREG32_SOC15(UVD, ring->me, mmUVD_RB_WPTR); in uvd_v7_0_enc_ring_get_wptr() 126 return RREG32_SOC15(UVD, ring->me, mmUVD_RB_WPTR2); in uvd_v7_0_enc_ring_get_wptr() 140 WREG32_SOC15(UVD, ring->me, mmUVD_RBC_RB_WPTR, lower_32_bits(ring->wptr)); in uvd_v7_0_ring_set_wptr() 161 if (ring == &adev->uvd.inst[ring->me] in uvd_v7_0_enc_ring_set_wptr() [all...] |
H A D | amdgpu_gfx.c | 74 int me, int pipe, int queue) in amdgpu_gfx_me_queue_to_bit() argument 78 bit += me * adev->gfx.me.num_pipe_per_me in amdgpu_gfx_me_queue_to_bit() 79 * adev->gfx.me.num_queue_per_pipe; in amdgpu_gfx_me_queue_to_bit() 80 bit += pipe * adev->gfx.me.num_queue_per_pipe; in amdgpu_gfx_me_queue_to_bit() 87 int *me, int *pipe, int *queue) in amdgpu_gfx_bit_to_me_queue() argument 89 *queue = bit % adev->gfx.me.num_queue_per_pipe; in amdgpu_gfx_bit_to_me_queue() 90 *pipe = (bit / adev->gfx.me.num_queue_per_pipe) in amdgpu_gfx_bit_to_me_queue() 91 % adev->gfx.me.num_pipe_per_me; in amdgpu_gfx_bit_to_me_queue() 92 *me in amdgpu_gfx_bit_to_me_queue() 97 amdgpu_gfx_is_me_queue_enabled(struct amdgpu_device * adev,int me,int pipe,int queue) amdgpu_gfx_is_me_queue_enabled() argument 185 int me = ring->me; amdgpu_gfx_is_high_priority_graphics_queue() local [all...] |
/openbsd-src/gnu/usr.bin/perl/Porting/ |
H A D | harness-timer-report.pl | 35 our $ME = basename($0); 41 $ME: Usage: 42 $ME [--scale=[sum|max]] 76 die "$ME: Unexpected --show='$s'\n"; 86 die "$ME: Unexpected --min='$s'\n"; 96 die "$ME: Unexpected --max='$s'\n"; 104 my ($ma, $mb, $mc, $md, $me); 110 open($logfh, "<", $logfn) or die "$ME: Failed to open logfn: $logfn\n"; 115 die "$ME: Unexpected logfile arguments: @ARGV\n"; 153 $me = max($ratio, $md // $ratio); [all …]
|
/openbsd-src/games/fortune/datfiles/ |
H A D | zippy | 73 BARBARA STANWYCK makes me nervous!! 107 Civilization is fun! Anyway, it keeps me busy!! 113 LEFT at th'HOLIDAY INN!! JOIN the CREDIT WORLD!! MAKE me an OFFER!!! 154 Does someone from PEORIA have a SHORTER ATTENTION span than me? 161 Don't hit me!! I'm in the Twilight Zone!!! 163 Don't SANFORIZE me!! 169 Edwin Meese made me wear CORDOVANS!! 182 Excuse me, but didn't I tell you there's NO HOPE for the survival of 185 FEELINGS are cascading over me!!! 222 Hand me a pair of leather pants and a CASIO keyboard -- I'm living for [all …]
|
/openbsd-src/gnu/llvm/clang/tools/scan-build-py/tests/unit/ |
H A D | test_shell.py | 28 test(['clang', "it's me", 'again']) 32 self.assertEqual(sut.encode(['clang', "it's me", 'again']), 33 'clang "it\'s me" again') 34 self.assertEqual(sut.encode(['clang', "it(s me", 'again)']), 35 'clang "it(s me" "again)"')
|
/openbsd-src/regress/usr.bin/mandoc/mdoc/Sh/ |
H A D | punctNAME.out_ascii | 3 NNAAMMEE 4 …SShh--ppuunnccttNNAAMMEE sseeccoonndd__nnaammee; tthhiirrdd__nnaam…
|
/openbsd-src/gnu/gcc/libgomp/config/posix95/ |
H A D | lock.c | 84 pthread_t me = pthread_self (); in omp_set_nest_lock() local 86 if (lock->owner != me) in omp_set_nest_lock() 89 lock->owner = me; in omp_set_nest_lock() 110 pthread_t me = pthread_self (); in omp_test_nest_lock() local 112 if (lock->owner != me) in omp_test_nest_lock() 116 lock->owner = me; in omp_test_nest_lock()
|
/openbsd-src/gnu/llvm/clang/lib/ARCMigrate/ |
H A D | TransUnusedInitDelegate.cpp | 49 bool VisitObjCMessageExpr(ObjCMessageExpr *ME) { in VisitObjCMessageExpr() argument 50 if (ME->isDelegateInitCall() && in VisitObjCMessageExpr() 51 isRemovable(ME) && in VisitObjCMessageExpr() 53 ME->getExprLoc())) { in VisitObjCMessageExpr() 56 ME->getExprLoc()); in VisitObjCMessageExpr() 57 SourceRange ExprRange = ME->getSourceRange(); in VisitObjCMessageExpr()
|