Home
last modified time | relevance | path

Searched refs:scm (Results 1 – 25 of 292) sorted by relevance

12345678910>>...12

/external/bcc/docs/
Dkernel-versions.md34 [`include/uapi/linux/bpf.h`](https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tre…
86 BPF iterator | 5.8 | [`180139dca8b3`](https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linu…
88 Sleepable BPF programs | 5.10 | [`1e6c62a88215`](https://git.kernel.org/pub/scm/linux/kernel/git/to…
95 [`include/uapi/linux/bpf.h`](https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tre…
128 inode storage | 5.10 | [`8ea636848aca`](https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/li…
129 task storage | 5.11 | [`4cf1bc1f1045`](https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/lin…
135 [`include/uapi/linux/bpf.h`](https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tre…
141 …lete, `GET_NEXT_KEY`) | 3.18 | [`db20fd2b0108`](https://git.kernel.org/pub/scm/linux/kernel/git/to…
142 Pass flags to `UPDATE_ELEM` | 3.19 | [`3274f52073d8`](https://git.kernel.org/pub/scm/linux/kernel/g…
144 Pass `NULL` to `GET_NEXT_KEY` | 4.12 | [`8fe45924387b`](https://git.kernel.org/pub/scm/linux/kernel…
[all …]
/external/wpa_supplicant_8/wpa_supplicant/
Dmain_winsvc.c256 SC_HANDLE svc, scm; in register_service() local
261 scm = OpenSCManager(0, 0, SC_MANAGER_CREATE_SERVICE); in register_service()
262 if (!scm) { in register_service()
267 svc = CreateService(scm, WPASVC_NAME, WPASVC_DISPLAY_NAME, in register_service()
274 CloseServiceHandle(scm); in register_service()
287 CloseServiceHandle(scm); in register_service()
297 SC_HANDLE svc, scm; in unregister_service() local
302 scm = OpenSCManager(0, 0, SC_MANAGER_CREATE_SERVICE); in unregister_service()
303 if (!scm) { in unregister_service()
308 svc = OpenService(scm, WPASVC_NAME, SERVICE_ALL_ACCESS | DELETE); in unregister_service()
[all …]
/external/mdnsresponder/mDNSWindows/
DVPCDetect.cpp38 SC_HANDLE scm = NULL; in IsVPCRunning() local
50 scm = OpenSCManager( 0, 0, SC_MANAGER_CONNECT ); in IsVPCRunning()
51 err = translate_errno( scm, (OSStatus) GetLastError(), kOpenErr ); in IsVPCRunning()
54 service = OpenService( scm, TEXT( "winmgmt" ), SERVICE_QUERY_STATUS ); in IsVPCRunning()
154 if ( scm ) in IsVPCRunning()
156 CloseServiceHandle( scm ); in IsVPCRunning()
/external/tensorflow/tensorflow/java/
Dgenerate_pom.cc44 <scm>
47 <developerConnection>scm:git:https://github.com/tensorflow/tensorflow.git</developerConnection>
48 </scm>
/external/libcap/
DCHANGELOG7 https://git.kernel.org/pub/scm/libs/libcap/libcap.git/
11 git clone git://git.kernel.org/pub/scm/libs/libcap/libcap.git
15 https://git.kernel.org/pub/scm/libs/libcap/libcap.git/tree/License
/external/subsampling-scale-image-view/
Drelease.gradle42 scm {
43 url 'scm:git@github.com:davemorrissey/subsampling-scale-image-view.git'
44 connection 'scm:git@github.com:davemorrissey/subsampling-scale-image-view.git'
45 … developerConnection 'scm:git@github.com:davemorrissey/subsampling-scale-image-view.git'
/external/mockito-kotlin/gradle/
Dpublishing.gradle31 def scm = root.appendNode('scm')
32 scm.appendNode('url', 'scm:git@github.com:mockito/mockito-kotlin.git')
/external/volley/
Dpublish.gradle44 scm {
45 connection = 'scm:git:git://github.com/google/volley.git'
46 developerConnection = 'scm:git:ssh://git@github.com/google/volley.git'
/external/perfetto/test/configs/
Dscm.cfg11 ftrace_events: "scm/scm_call_start"
12 ftrace_events: "scm/scm_call_end"
/external/conscrypt/gradle/
Dpublishing.gradle17 scm {
18 connection = 'scm:git:https://github.com/google/conscrypt.git'
19 developerConnection = 'scm:git:git@github.com:google/conscrypt.git'
/external/trace-cmd/
DPACKAGING7 git clone git://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git
8 git clone git://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git
9 git clone git://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git
DREADME7 git://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git
36 git clone https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/
41 git clone https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/
/external/testng/gradle/
Dpublishing-maven.gradle58 scm {
59 connection 'scm:git:https://github.com/cbeust/testng.git'
60 developerConnection 'scm:git:git@github.com:cbeust/testng.git'
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Dwpagui.cpp1806 SC_HANDLE svc, scm; in startService() local
1808 scm = OpenSCManager(0, 0, SC_MANAGER_CONNECT); in startService()
1809 if (!scm) { in startService()
1814 svc = OpenService(scm, WPASVC_NAME, SERVICE_START); in startService()
1817 CloseServiceHandle(scm); in startService()
1827 CloseServiceHandle(scm); in startService()
1833 SC_HANDLE svc, scm; in stopService() local
1836 scm = OpenSCManager(0, 0, SC_MANAGER_CONNECT); in stopService()
1837 if (!scm) { in stopService()
1842 svc = OpenService(scm, WPASVC_NAME, SERVICE_STOP); in stopService()
[all …]
/external/iproute2/
DMETADATA6 value: "https://git.kernel.org/pub/scm/network/iproute2/iproute2.git"
10 …value: "https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/snapshot/iproute2-4.14.1.tar.…
/external/kotlinpoet/
Dgradle.properties8 POM_SCM_CONNECTION=scm:git:https://github.com/square/kotlinpoet.git
9 POM_SCM_DEV_CONNECTION=scm:git:ssh://git@github.com/square/kotlinpoet.git
/external/dagger2/java/dagger/hilt/android/plugin/
Dbuild.gradle236 pom.scm {
238 connection = 'scm:git:git://github.com/google/dagger.git'
239 developerConnection = 'scm:git:ssh://git@github.com/google/dagger.git'
268 // Adds scm->tag because for some reason the DSL API does not.
269 // <scm>
271 // </scm>
272 projectNode.get('scm').first().appendNode('tag', 'HEAD')
/external/f2fs-tools/
DMETADATA10 value: "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/"
14 value: "https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git"
/external/jazzer-api/
Djazzer-api.pom35 <scm>
37 </scm>
/external/lottie/
Dgradle.properties7 POM_SCM_CONNECTION=scm:git@github.com:airbnb/lottie-android.git
8 POM_SCM_DEV_CONNECTION=scm:git@github.com:airbnb/lottie-android.git
/external/robolectric/buildSrc/src/main/groovy/org/robolectric/gradle/
DDeployedRoboJavaModulePlugin.groovy60 scm {
62 connection = "scm:git:git://github.com/robolectric/robolectric.git"
63 … developerConnection = "scm:git:https://github.com/robolectric/robolectric.git"
/external/okio/
Dgradle.properties17 POM_SCM_CONNECTION=scm:git:git://github.com/square/okio.git
18 POM_SCM_DEV_CONNECTION=scm:git:ssh://git@github.com/square/okio.git
/external/nullaway/
Dgradle.properties21 POM_SCM_CONNECTION=scm:git:git://github.com/uber/NullAway.git
22 POM_SCM_DEV_CONNECTION=scm:git:ssh://git@github.com/uber/NullAway.git
/external/grpc-grpc-java/android/
Dbuild.gradle115 scm {
116 connection 'scm:git:https://github.com/grpc/grpc-java.git'
117 developerConnection 'scm:git:git@github.com:grpc/grpc-java.git'
/external/libbpf/scripts/
Dcoverity.sh80 cov-import-scm --dir $RESULTS_DIR --scm git --log $RESULTS_DIR/scm_log.txt 2>&1

12345678910>>...12